Last active
May 13, 2020 16:52
-
-
Save MonkeyDo/6d2f46a15731a36027fd9e099177dcc9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8" /> | |
<title>ListenBrainz player launcher</title> | |
</head> | |
<body> | |
<script> | |
/** | |
* sends a request to the specified url from a form. this will change the window location. | |
* @param {string} path the path to send the post request to | |
* @param {object} params the paramiters to add to the url | |
* @param {string} [method=post] the method to use on the form | |
*/ | |
function post(path, params, method='post') { | |
// The rest of this code assumes you are not using a library. | |
// It can be made less wordy if you use one. | |
const form = document.createElement('form'); | |
form.method = method; | |
form.action = path; | |
for (const key in params) { | |
if (params.hasOwnProperty(key)) { | |
const hiddenField = document.createElement('input'); | |
hiddenField.type = 'hidden'; | |
hiddenField.name = key; | |
hiddenField.value = params[key]; | |
form.appendChild(hiddenField); | |
} | |
} | |
document.body.appendChild(form); | |
form.submit(); | |
} | |
post('https://listenbrainz.org/player/',{listens:JSON.stringify( | |
[{ | |
"listened_at": 1589360978, | |
"listened_at_iso": "2020-05-13T09:09:38Z", | |
"track_metadata": { | |
"additional_info": { | |
"albumartist": "Santrofi", | |
"artist_mbids": [ | |
"efbfdeb2-b2a9-45c9-afbf-534592da036f" | |
], | |
"artist_msid": "6ea84c9d-f4ed-41a0-bef7-19e1aaeeafdb", | |
"date": "2020-04-24", | |
"discnumber": "1", | |
"recording_mbid": "1218e216-566e-4e99-8813-9f806f7bcee3", | |
"release_group_mbid": "2fba4855-cc48-4aab-9551-d535bb0cb8b2", | |
"release_mbid": "80789764-c0cb-406c-9ed4-19b4c5589058", | |
"release_msid": "8e100760-ee8f-406b-b68d-a9d5e0c6b082", | |
"totaldiscs": "1", | |
"totaltracks": "10", | |
"track_mbid": "5cf5d3c6-f1b7-4b21-be2f-f2354817bdde", | |
"tracknumber": "8" | |
}, | |
"artist_name": "Santrofi", | |
"release_name": "Alewa", | |
"track_name": "Kwabena Amoah" | |
}, | |
"user_name": "mfmeulenbelt" | |
}, | |
{ | |
"listened_at": 1589360970, | |
"listened_at_iso": "2020-05-13T09:09:30Z", | |
"track_metadata": { | |
"additional_info": { | |
"artist_mbid": "9d97b077-b28d-4ba8-a3d9-c71926e3b2b6", | |
"artist_msid": "c35ff88b-a3b4-40c4-9d4a-3e043f21c26b", | |
"recording_mbid": "b64099b2-1272-4d73-9e54-10211b3074fe", | |
"release_mbid": "b696365b-7e07-4ea5-baa6-0613da02cfdb", | |
"release_msid": "9a4149c4-7d07-4d37-a567-337976476249" | |
}, | |
"artist_name": "Gordon Lightfoot", | |
"release_name": "Sunday Concert", | |
"track_name": "Boss Man" | |
}, | |
"user_name": "stebe" | |
}, | |
{ | |
"listened_at": 1589360961, | |
"listened_at_iso": "2020-05-13T09:09:21Z", | |
"track_metadata": { | |
"additional_info": { | |
"artist_msid": "985b5324-fecf-4723-b3b9-6f09e83e223b", | |
"artist_names": [ | |
"BROCKHAMPTON" | |
], | |
"discnumber": 1, | |
"duration_ms": 219720, | |
"isrc": "USRC11902080", | |
"listening_from": "spotify", | |
"release_artist_name": "BROCKHAMPTON", | |
"release_artist_names": [ | |
"BROCKHAMPTON" | |
], | |
"release_msid": "294f10e1-9a34-4300-9457-e79537eb6a39", | |
"spotify_album_artist_ids": [ | |
"https://open.spotify.com/artist/1Bl6wpkWCQ4KVgnASpvzzA" | |
], | |
"spotify_album_id": "https://open.spotify.com/album/1jToVugwBEzcak8gJNZG2f", | |
"spotify_artist_ids": [ | |
"https://open.spotify.com/artist/1Bl6wpkWCQ4KVgnASpvzzA" | |
], | |
"spotify_id": "https://open.spotify.com/track/7frG49GBDHPPvxXRVLRwle", | |
"tracknumber": 8 | |
}, | |
"artist_name": "BROCKHAMPTON", | |
"release_name": "GINGER", | |
"track_name": "I BEEN BORN AGAIN" | |
}, | |
"user_name": "schurmann" | |
}, | |
{ | |
"listened_at": 1589360958, | |
"listened_at_iso": "2020-05-13T09:09:18Z", | |
"track_metadata": { | |
"additional_info": { | |
"artist_msid": "b98d2d84-7fff-4878-8a71-c8bb72018a35", | |
"rating": "", | |
"recording_mbid": "fe7053c3-712a-4bfe-b625-a7ecbd4afd1b", | |
"release_msid": "d7434945-79b7-4fc3-a59b-74d7bdeaf046", | |
"source": "P", | |
"track_length": "276", | |
"track_number": "7/9" | |
}, | |
"artist_name": "Simple Minds", | |
"release_name": "New Gold Dream (81-82-83-84)", | |
"track_name": "Glittering Prize" | |
}, | |
"user_name": "DjSlash" | |
}, | |
{ | |
"listened_at": 1589360958, | |
"listened_at_iso": "2020-05-13T09:09:18Z", | |
"track_metadata": { | |
"additional_info": { | |
"artist_msid": "cefe2324-59cb-4935-92d8-ec0f34a5a2bf", | |
"artist_names": [ | |
"David Osborne" | |
], | |
"discnumber": 1, | |
"duration_ms": 253093, | |
"isrc": "QMQME1900222", | |
"listening_from": "spotify", | |
"release_artist_name": "David Osborne", | |
"release_artist_names": [ | |
"David Osborne" | |
], | |
"release_msid": "10c79c33-18b1-4fe1-a49f-f7e783db3a82", | |
"spotify_album_artist_ids": [ | |
"https://open.spotify.com/artist/0oA8UUNNUP3zWCUkZVin0G" | |
], | |
"spotify_album_id": "https://open.spotify.com/album/6tA4cj0vwquF17GcPYaz7B", | |
"spotify_artist_ids": [ | |
"https://open.spotify.com/artist/0oA8UUNNUP3zWCUkZVin0G" | |
], | |
"spotify_id": "https://open.spotify.com/track/55AKl8UloH2IAAi89qqGN3", | |
"tracknumber": 1 | |
}, | |
"artist_name": "David Osborne", | |
"release_name": "Pop! Goes the Piano: Perfect", | |
"track_name": "Perfect" | |
}, | |
"user_name": "Calfin" | |
}, | |
{ | |
"listened_at": 1589360949, | |
"listened_at_iso": "2020-05-13T09:09:09Z", | |
"track_metadata": { | |
"additional_info": { | |
"artist_msid": "ca9d798d-fa59-4b55-b4dd-751f3f65def8", | |
"artist_names": [ | |
"O'Flynn" | |
], | |
"discnumber": 1, | |
"duration_ms": 346361, | |
"isrc": "GBGNS1701710", | |
"listening_from": "spotify", | |
"release_artist_name": "O'Flynn", | |
"release_artist_names": [ | |
"O'Flynn" | |
], | |
"release_msid": "cfefba8f-5ce9-4cd3-a051-8b9279294683", | |
"spotify_album_artist_ids": [ | |
"https://open.spotify.com/artist/7LTSTQkL7iK7zndjFQgHQo" | |
], | |
"spotify_album_id": "https://open.spotify.com/album/0RVj8aaUuoTOZ7pyGjll6b", | |
"spotify_artist_ids": [ | |
"https://open.spotify.com/artist/7LTSTQkL7iK7zndjFQgHQo" | |
], | |
"spotify_id": "https://open.spotify.com/track/1SMLoRfenhQJjL4fbimctZ", | |
"tracknumber": 3 | |
}, | |
"artist_name": "O'Flynn", | |
"release_name": "Aletheia", | |
"track_name": "Aletheia" | |
}, | |
"user_name": "Befeb" | |
}, | |
{ | |
"listened_at": 1589360946, | |
"listened_at_iso": "2020-05-13T09:09:06Z", | |
"track_metadata": { | |
"additional_info": { | |
"artist_msid": "a302405b-525f-4ad7-ab41-48020b9a3bf2", | |
"release_msid": "ef1128de-9d7e-4896-9cd2-dec7db64b30c", | |
"tracknumber": 10 | |
}, | |
"artist_name": "Maluma", | |
"release_name": "201804 Logi Rrhh Llama A Carmen Y Rellénaselo Sa", | |
"track_name": "Corazón" | |
}, | |
"user_name": "xankletas" | |
}, | |
{ | |
"listened_at": 1589360943, | |
"listened_at_iso": "2020-05-13T09:09:03Z", | |
"track_metadata": { | |
"additional_info": { | |
"artist_msid": "b5fea9c5-f0e1-4a91-a7a5-24f22e7c7ab5", | |
"artist_names": [ | |
"Foals" | |
], | |
"discnumber": 1, | |
"duration_ms": 409560, | |
"isrc": "GBAHT1000047", | |
"listening_from": "spotify", | |
"release_artist_name": "Foals", | |
"release_artist_names": [ | |
"Foals" | |
], | |
"release_msid": "3b24c6cc-0aa4-4351-bb49-c4a9a9914d23", | |
"spotify_album_artist_ids": [ | |
"https://open.spotify.com/artist/6FQqZYVfTNQ1pCqfkwVFEa" | |
], | |
"spotify_album_id": "https://open.spotify.com/album/0TN9abNwnSnMW3jxw6uIeL", | |
"spotify_artist_ids": [ | |
"https://open.spotify.com/artist/6FQqZYVfTNQ1pCqfkwVFEa" | |
], | |
"spotify_id": "https://open.spotify.com/track/4i3txPQIUV4eC9g9FBpi9I", | |
"tracknumber": 5 | |
}, | |
"artist_name": "Foals", | |
"release_name": "Total Life Forever", | |
"track_name": "Spanish Sahara" | |
}, | |
"user_name": "Vinnl" | |
}, | |
{ | |
"listened_at": 1589360930, | |
"listened_at_iso": "2020-05-13T09:08:50Z", | |
"track_metadata": { | |
"additional_info": { | |
"artist_msid": "d1d4d3b1-2d4c-430c-bf9b-a56b0d71d641", | |
"artist_names": [ | |
"Alessia Cara" | |
], | |
"discnumber": 1, | |
"duration_ms": 217347, | |
"isrc": "USUM72006334", | |
"listening_from": "spotify", | |
"release_artist_name": "Alessia Cara", | |
"release_artist_names": [ | |
"Alessia Cara" | |
], | |
"release_msid": "a48b07ca-ec48-45de-ad0e-a856823974b5", | |
"spotify_album_artist_ids": [ | |
"https://open.spotify.com/artist/2wUjUUtkb5lvLKcGKsKqsR" | |
], | |
"spotify_album_id": "https://open.spotify.com/album/6k4ugOvti66x6xvnQpYSj7", | |
"spotify_artist_ids": [ | |
"https://open.spotify.com/artist/2wUjUUtkb5lvLKcGKsKqsR" | |
], | |
"spotify_id": "https://open.spotify.com/track/13QIjo2iGBgl56mNDjJOet", | |
"tracknumber": 1 | |
}, | |
"artist_name": "Alessia Cara", | |
"release_name": "I Choose (From The Netflix Original Film The Willoughbys)", | |
"track_name": "I Choose - From The Netflix Original Film The Willoughbys" | |
}, | |
"user_name": "MattSuda" | |
}, | |
{ | |
"listened_at": 1589360928, | |
"listened_at_iso": "2020-05-13T09:08:48Z", | |
"track_metadata": { | |
"additional_info": { | |
"artist_msid": "c89f80c3-6eca-4d8f-93ac-818a36367ece", | |
"artist_names": [ | |
"Isolation Berlin" | |
], | |
"discnumber": 1, | |
"duration_ms": 236333, | |
"isrc": "DEEH61701063", | |
"listening_from": "spotify", | |
"release_artist_name": "Isolation Berlin", | |
"release_artist_names": [ | |
"Isolation Berlin" | |
], | |
"release_msid": "0c16188c-d7e4-460c-b221-90d235fcb2a1", | |
"spotify_album_artist_ids": [ | |
"https://open.spotify.com/artist/37vi8sUkMSg3L9BTaMZRrv" | |
], | |
"spotify_album_id": "https://open.spotify.com/album/0WNeA06b0e5mk2TbR1EwTb", | |
"spotify_artist_ids": [ | |
"https://open.spotify.com/artist/37vi8sUkMSg3L9BTaMZRrv" | |
], | |
"spotify_id": "https://open.spotify.com/track/19b0e2cTPnrAmbIH2XV47u", | |
"tracknumber": 2 | |
}, | |
"artist_name": "Isolation Berlin", | |
"release_name": "Und aus den Wolken tropft die Zeit", | |
"track_name": "Fahr weg" | |
}, | |
"user_name": "ksermarc268" | |
}, | |
{ | |
"listened_at": 1589360925, | |
"listened_at_iso": "2020-05-13T09:08:45Z", | |
"track_metadata": { | |
"additional_info": { | |
"artist_msid": "efab8f4b-e175-4db1-8495-70a4baa5e57c", | |
"artist_names": [ | |
"Celph Titled" | |
], | |
"discnumber": 2, | |
"duration_ms": 171901, | |
"isrc": "QM4TW2071237", | |
"listening_from": "spotify", | |
"release_artist_name": "Apathy, Celph Titled", | |
"release_artist_names": [ | |
"Apathy", | |
"Celph Titled" | |
], | |
"release_msid": "16dbe0f5-f744-447d-bbc3-2312d6530d8a", | |
"spotify_album_artist_ids": [ | |
"https://open.spotify.com/artist/6fK2hnSgfRPxR6sL975XQS", | |
"https://open.spotify.com/artist/6bJSpzkLD8XYKqsXJ5jJNS" | |
], | |
"spotify_album_id": "https://open.spotify.com/album/4fz1gzj8uM52PXKzugkjHa", | |
"spotify_artist_ids": [ | |
"https://open.spotify.com/artist/6bJSpzkLD8XYKqsXJ5jJNS" | |
], | |
"spotify_id": "https://open.spotify.com/track/5GcyTH3F3Ss63eCShJGMtl", | |
"tracknumber": 21 | |
}, | |
"artist_name": "Celph Titled", | |
"release_name": "Tour Lords", | |
"track_name": "Paragraphs of Murder" | |
}, | |
"user_name": "chtamina" | |
}, | |
{ | |
"listened_at": 1589360916, | |
"listened_at_iso": "2020-05-13T09:08:36Z", | |
"track_metadata": { | |
"additional_info": { | |
"artist_msid": "ef05aa37-8367-4c41-b256-21091e576a3f", | |
"rating": "", | |
"recording_mbid": "", | |
"release_msid": "fdacde53-427a-419b-b312-642734b5ad94", | |
"source": "R", | |
"track_length": "", | |
"track_number": "" | |
}, | |
"artist_name": "Band of Susans", | |
"release_name": "Love Agenda", | |
"track_name": "Birthmark" | |
}, | |
"user_name": "Groschi" | |
}, | |
{ | |
"listened_at": 1589360915, | |
"listened_at_iso": "2020-05-13T09:08:35Z", | |
"track_metadata": { | |
"additional_info": { | |
"artist_msid": "7ef97e12-5648-4261-89ed-982da0eed624", | |
"release_mbid": "e82b3696-42dd-32c5-9684-94020a47bac0", | |
"release_msid": "a572164b-a5fd-483e-9ab1-3bac45d5a603", | |
"tracknumber": 2 | |
}, | |
"artist_name": "Green Day", | |
"release_name": "American Idiot", | |
"track_name": "Jesus of Suburbia: I. Jesus of Suburbia / II. City of the Damned / III. I Don’t Care / IV. Dearly Beloved / V. Tales of Another Broken Home" | |
}, | |
"user_name": "napley" | |
}, | |
{ | |
"listened_at": 1589360915, | |
"listened_at_iso": "2020-05-13T09:08:35Z", | |
"track_metadata": { | |
"additional_info": { | |
"artist_msid": "123b642d-71c2-4c1c-a512-702cd91abd08", | |
"artist_names": [ | |
"Oxygenstar" | |
], | |
"discnumber": 1, | |
"duration_ms": 152083, | |
"isrc": "USCTC0000903", | |
"listening_from": "spotify", | |
"release_artist_name": "Oxygenstar", | |
"release_artist_names": [ | |
"Oxygenstar" | |
], | |
"release_msid": "daa7cc51-ccc9-440f-a06c-345f01589f67", | |
"spotify_album_artist_ids": [ | |
"https://open.spotify.com/artist/0bGphNhMxrfrrsHdthh0pE" | |
], | |
"spotify_album_id": "https://open.spotify.com/album/1BQi3z1OWpDbPBTTKbdto7", | |
"spotify_artist_ids": [ | |
"https://open.spotify.com/artist/0bGphNhMxrfrrsHdthh0pE" | |
], | |
"spotify_id": "https://open.spotify.com/track/1lDZzOikVnzSHAW6UE2j4i", | |
"tracknumber": 3 | |
}, | |
"artist_name": "Oxygenstar", | |
"release_name": "Harmony Palace", | |
"track_name": "Jingle Jingle" | |
}, | |
"user_name": "MXMLLN" | |
}, | |
{ | |
"listened_at": 1589360910, | |
"listened_at_iso": "2020-05-13T09:08:30Z", | |
"track_metadata": { | |
"additional_info": { | |
"artist_msid": "b8aa7106-285f-4619-aa1e-57ea3e2fa316", | |
"artist_names": [ | |
"Tanmaya Bhatnagar" | |
], | |
"discnumber": 1, | |
"duration_ms": 212530, | |
"isrc": "usdy42036428", | |
"listening_from": "spotify", | |
"release_artist_name": "Tanmaya Bhatnagar", | |
"release_artist_names": [ | |
"Tanmaya Bhatnagar" | |
], | |
"release_msid": "64150640-5d69-4d2d-8db8-d098618d2cbf", | |
"spotify_album_artist_ids": [ | |
"https://open.spotify.com/artist/1kzKlwoZunQPBWRLCZ7ZvS" | |
], | |
"spotify_album_id": "https://open.spotify.com/album/6jN4E5miEwdQBUqU0HP0Dg", | |
"spotify_artist_ids": [ | |
"https://open.spotify.com/artist/1kzKlwoZunQPBWRLCZ7ZvS" | |
], | |
"spotify_id": "https://open.spotify.com/track/2rjCLFdX8n9xLoMZgdMMxt", | |
"tracknumber": 1 | |
}, | |
"artist_name": "Tanmaya Bhatnagar", | |
"release_name": "Kya Tum Naraaz Ho? (Raw)", | |
"track_name": "Kya Tum Naraaz Ho? (Raw)" | |
}, | |
"user_name": "tomodachi" | |
}, | |
{ | |
"listened_at": 1589360902, | |
"listened_at_iso": "2020-05-13T09:08:22Z", | |
"track_metadata": { | |
"additional_info": { | |
"artist_msid": "bb1b6a7f-fa2a-403b-accc-e5b7ca422d8c", | |
"release_msid": "b7563dc8-c7bd-425f-97a8-db8dfb396e8f" | |
}, | |
"artist_name": "Titan Slayer", | |
"release_name": "Crytical Voltage", | |
"track_name": "B_tch" | |
}, | |
"user_name": "zaedumtt" | |
}, | |
{ | |
"listened_at": 1589360897, | |
"listened_at_iso": "2020-05-13T09:08:17Z", | |
"track_metadata": { | |
"additional_info": { | |
"artist_msid": "9f5e9335-ca47-4f2d-979b-1890076ededc", | |
"artist_names": [ | |
"Silverstein" | |
], | |
"discnumber": 1, | |
"duration_ms": 207586, | |
"isrc": "USVIC0632407", | |
"listening_from": "spotify", | |
"release_artist_name": "Silverstein", | |
"release_artist_names": [ | |
"Silverstein" | |
], | |
"release_msid": "d18c5617-76e4-43d5-b37a-e6ca5e799e57", | |
"spotify_album_artist_ids": [ | |
"https://open.spotify.com/artist/1Tsag5J854qxeOo2apszug" | |
], | |
"spotify_album_id": "https://open.spotify.com/album/3Kjjhj3BItSKPMU4IznHuj", | |
"spotify_artist_ids": [ | |
"https://open.spotify.com/artist/1Tsag5J854qxeOo2apszug" | |
], | |
"spotify_id": "https://open.spotify.com/track/2i4yyBwHqj91tSHu0gIeUg", | |
"tracknumber": 7 | |
}, | |
"artist_name": "Silverstein", | |
"release_name": "Discovering the Waterfront (Reissue)", | |
"track_name": "My Heroine" | |
}, | |
"user_name": "dragontristana" | |
}, | |
{ | |
"listened_at": 1589360893, | |
"listened_at_iso": "2020-05-13T09:08:13Z", | |
"track_metadata": { | |
"additional_info": { | |
"artist_msid": "0461ddc5-5f2c-4472-8498-5234d0f36110", | |
"artist_names": [ | |
"Shallou", | |
"Daya", | |
"Felix Cartal" | |
], | |
"discnumber": 1, | |
"duration_ms": 233769, | |
"isrc": "USUM72005328", | |
"listening_from": "spotify", | |
"release_artist_name": "Shallou, Daya, Felix Cartal", | |
"release_artist_names": [ | |
"Shallou", | |
"Daya", | |
"Felix Cartal" | |
], | |
"release_msid": "498ca37d-46cc-4980-94a8-e9dd8e992d92", | |
"spotify_album_artist_ids": [ | |
"https://open.spotify.com/artist/7C3Cbtr2PkH2l4tOGhtCsk", | |
"https://open.spotify.com/artist/6Dd3NScHWwnW6obMFbl1BH", | |
"https://open.spotify.com/artist/6roDXEmZ6AARdOUv6x5U2v" | |
], | |
"spotify_album_id": "https://open.spotify.com/album/2VM3IUEdOMG0WmlsX5yBKf", | |
"spotify_artist_ids": [ | |
"https://open.spotify.com/artist/7C3Cbtr2PkH2l4tOGhtCsk", | |
"https://open.spotify.com/artist/6Dd3NScHWwnW6obMFbl1BH", | |
"https://open.spotify.com/artist/6roDXEmZ6AARdOUv6x5U2v" | |
], | |
"spotify_id": "https://open.spotify.com/track/6lFA5cCDaWqaJCnU6zEiYO", | |
"tracknumber": 1 | |
}, | |
"artist_name": "Shallou, Daya, Felix Cartal", | |
"release_name": "Older (Felix Cartal Remix)", | |
"track_name": "Older - Felix Cartal Remix" | |
}, | |
"user_name": "KamranMackey" | |
}, | |
{ | |
"listened_at": 1589360880, | |
"listened_at_iso": "2020-05-13T09:08:00Z", | |
"track_metadata": { | |
"additional_info": { | |
"artist_msid": "d8696b51-1a16-4543-b9a2-8e9c6b91b42c", | |
"artist_names": [ | |
"Amit Trivedi" | |
], | |
"discnumber": 1, | |
"duration_ms": 241962, | |
"isrc": "INS181303936", | |
"listening_from": "spotify", | |
"release_artist_name": "Amit Trivedi", | |
"release_artist_names": [ | |
"Amit Trivedi" | |
], | |
"release_msid": "92c1d0ac-a259-4025-a7cd-948fcdcce64e", | |
"spotify_album_artist_ids": [ | |
"https://open.spotify.com/artist/7HCqGPJcQTyGJ2yqntbuyr" | |
], | |
"spotify_album_id": "https://open.spotify.com/album/3VrQeNAFHS4Vjl4uspl1s3", | |
"spotify_artist_ids": [ | |
"https://open.spotify.com/artist/7HCqGPJcQTyGJ2yqntbuyr" | |
], | |
"spotify_id": "https://open.spotify.com/track/1gEHNfJRSXpDVaEicwRRfe", | |
"tracknumber": 5 | |
}, | |
"artist_name": "Amit Trivedi", | |
"release_name": "Lootera", | |
"track_name": "Zinda" | |
}, | |
"user_name": "iliekcomputers" | |
}, | |
{ | |
"listened_at": 1589360879, | |
"listened_at_iso": "2020-05-13T09:07:59Z", | |
"track_metadata": { | |
"additional_info": { | |
"artist_msid": "6599e41e-390c-4855-a2ac-68ee798538b4", | |
"artist_names": [ | |
"Coldplay" | |
], | |
"discnumber": 1, | |
"duration_ms": 321973, | |
"isrc": "GBAYE1202184", | |
"listening_from": "spotify", | |
"release_artist_name": "Coldplay", | |
"release_artist_names": [ | |
"Coldplay" | |
], | |
"release_msid": "e4d216e2-8dec-4a9e-800a-53814eb6f3f6", | |
"spotify_album_artist_ids": [ | |
"https://open.spotify.com/artist/4gzpq5DPGxSnKTe4SA8HAU" | |
], | |
"spotify_album_id": "https://open.spotify.com/album/2OkEsqGTfu8PWRrNHzfr0m", | |
"spotify_artist_ids": [ | |
"https://open.spotify.com/artist/4gzpq5DPGxSnKTe4SA8HAU" | |
], | |
"spotify_id": "https://open.spotify.com/track/7nyK4SxiizwxDRr4V2JJaF", | |
"tracknumber": 6 | |
}, | |
"artist_name": "Coldplay", | |
"release_name": "Live 2012", | |
"track_name": "God Put a Smile upon Your Face - Live" | |
}, | |
"user_name": "dogo77" | |
}, | |
{ | |
"listened_at": 1589360871, | |
"listened_at_iso": "2020-05-13T09:07:51Z", | |
"track_metadata": { | |
"additional_info": { | |
"artist_msid": "04b74c16-077c-4be9-bd0e-00c7f58f7503", | |
"release_msid": null | |
}, | |
"artist_name": "Antonio González El Pescailla", | |
"track_name": "Tomasa" | |
}, | |
"user_name": "keotical" | |
}, | |
{ | |
"listened_at": 1589360870, | |
"listened_at_iso": "2020-05-13T09:07:50Z", | |
"track_metadata": { | |
"additional_info": { | |
"artist_msid": "40c2f237-5167-4e0b-a557-788784c2de88", | |
"artist_names": [ | |
"FKA twigs" | |
], | |
"discnumber": 1, | |
"duration_ms": 298853, | |
"isrc": "GBBKS1400229", | |
"listening_from": "spotify", | |
"release_artist_name": "FKA twigs", | |
"release_artist_names": [ | |
"FKA twigs" | |
], | |
"release_msid": "636f5291-a045-4821-aa68-ef5f0f5918e2", | |
"spotify_album_artist_ids": [ | |
"https://open.spotify.com/artist/6nB0iY1cjSY1KyhYyuIIKH" | |
], | |
"spotify_album_id": "https://open.spotify.com/album/5VqGGKeWpIBRFh4M4XmqDK", | |
"spotify_artist_ids": [ | |
"https://open.spotify.com/artist/6nB0iY1cjSY1KyhYyuIIKH" | |
], | |
"spotify_id": "https://open.spotify.com/track/06d5qOLownLafrcQ8CvZU2", | |
"tracknumber": 5 | |
}, | |
"artist_name": "FKA twigs", | |
"release_name": "LP1", | |
"track_name": "Pendulum" | |
}, | |
"user_name": "johnvicencio" | |
}, | |
{ | |
"listened_at": 1589360866, | |
"listened_at_iso": "2020-05-13T09:07:46Z", | |
"track_metadata": { | |
"additional_info": { | |
"artist_msid": "3b35a5ac-a8c2-40df-a4ed-bdd4e84f6c4e", | |
"artist_names": [ | |
"David Joseph Wesley" | |
], | |
"discnumber": 1, | |
"duration_ms": 166739, | |
"isrc": "USDHM1916038", | |
"listening_from": "spotify", | |
"release_artist_name": "David Joseph Wesley", | |
"release_artist_names": [ | |
"David Joseph Wesley" | |
], | |
"release_msid": "29ca5702-2fb8-441b-86a0-31a8138c365b", | |
"spotify_album_artist_ids": [ | |
"https://open.spotify.com/artist/0m6SmPWkIZi8DzYYwaV3iB" | |
], | |
"spotify_album_id": "https://open.spotify.com/album/5UGCcoT2vmz5s6BI7B9Jgo", | |
"spotify_artist_ids": [ | |
"https://open.spotify.com/artist/0m6SmPWkIZi8DzYYwaV3iB" | |
], | |
"spotify_id": "https://open.spotify.com/track/51Y9aZ3h0LnH1mubXNfCHu", | |
"tracknumber": 1 | |
}, | |
"artist_name": "David Joseph Wesley", | |
"release_name": "Cassini", | |
"track_name": "Giovanni Cassini" | |
}, | |
"user_name": "jpennycook" | |
}, | |
{ | |
"listened_at": 1589360865, | |
"listened_at_iso": "2020-05-13T09:07:45Z", | |
"track_metadata": { | |
"additional_info": { | |
"artist_msid": "bb1b6a7f-fa2a-403b-accc-e5b7ca422d8c", | |
"release_msid": "38507109-f74c-4060-8dce-784dcee2ebc3" | |
}, | |
"artist_name": "Titan Slayer", | |
"release_name": "Defcon One", | |
"track_name": "Core" | |
}, | |
"user_name": "zaedumtt" | |
}, | |
{ | |
"listened_at": 1589360863, | |
"listened_at_iso": "2020-05-13T09:07:43Z", | |
"track_metadata": { | |
"additional_info": { | |
"artist_msid": "fafdf175-5acc-4db7-aca0-d267844551d5", | |
"artist_names": [ | |
"Mitch Murder" | |
], | |
"discnumber": 1, | |
"duration_ms": 269488, | |
"isrc": "USZ4V1400056", | |
"listening_from": "spotify", | |
"release_artist_name": "Mitch Murder", | |
"release_artist_names": [ | |
"Mitch Murder" | |
], | |
"release_msid": "3960b197-fca4-4532-8e9a-cc40d24f442f", | |
"spotify_album_artist_ids": [ | |
"https://open.spotify.com/artist/7eOzCiTklgHxfpf6Mb3D2e" | |
], | |
"spotify_album_id": "https://open.spotify.com/album/11Nnvgyq3pOLX8ajvjll3x", | |
"spotify_artist_ids": [ | |
"https://open.spotify.com/artist/7eOzCiTklgHxfpf6Mb3D2e" | |
], | |
"spotify_id": "https://open.spotify.com/track/2XD8RAoYmvuLRjvTi1dHvl", | |
"tracknumber": 5 | |
}, | |
"artist_name": "Mitch Murder", | |
"release_name": "Interceptor", | |
"track_name": "Interceptor" | |
}, | |
"user_name": "thinkingemoji" | |
}, | |
{ | |
"listened_at": 1589360863, | |
"listened_at_iso": "2020-05-13T09:07:43Z", | |
"track_metadata": { | |
"additional_info": { | |
"artist_msid": "5222e426-fef7-4d23-825e-20a576c13047", | |
"artist_names": [ | |
"Eddie Vedder" | |
], | |
"discnumber": 1, | |
"duration_ms": 236306, | |
"isrc": "USJY51700107", | |
"listening_from": "spotify", | |
"release_artist_name": "Eddie Vedder", | |
"release_artist_names": [ | |
"Eddie Vedder" | |
], | |
"release_msid": "70abe42d-2224-4516-86ed-c4f494a9e8fc", | |
"spotify_album_artist_ids": [ | |
"https://open.spotify.com/artist/0mXTJETA4XUa12MmmXxZJh" | |
], | |
"spotify_album_id": "https://open.spotify.com/album/13xlpKbai3GGoMSr75lOeX", | |
"spotify_artist_ids": [ | |
"https://open.spotify.com/artist/0mXTJETA4XUa12MmmXxZJh" | |
], | |
"spotify_id": "https://open.spotify.com/track/3bHhUEOTIbezeZ856R0BX5", | |
"tracknumber": 8 | |
}, | |
"artist_name": "Eddie Vedder", | |
"release_name": "Into The Wild (Music For The Motion Picture)", | |
"track_name": "Society" | |
}, | |
"user_name": "michuzet" | |
}, | |
{ | |
"listened_at": 1589360856, | |
"listened_at_iso": "2020-05-13T09:07:36Z", | |
"track_metadata": { | |
"additional_info": { | |
"artist_msid": "e7d974b3-ada7-4f7e-baf7-06da907baa5b", | |
"listening_from": "MusicBee", | |
"release_msid": "21bf1727-8f2f-414a-b288-bed5d1896cb6" | |
}, | |
"artist_name": "Nick Drake", | |
"release_name": "Pink Moon", | |
"track_name": "Things Behind the Sun" | |
}, | |
"user_name": "neelath" | |
}, | |
{ | |
"listened_at": 1589360854, | |
"listened_at_iso": "2020-05-13T09:07:34Z", | |
"track_metadata": { | |
"additional_info": { | |
"artist_msid": "2cedd901-f0f5-44aa-9147-cc574e554190", | |
"artist_names": [ | |
"Blind Guardian" | |
], | |
"discnumber": 1, | |
"duration_ms": 297440, | |
"isrc": "DED831700964", | |
"listening_from": "spotify", | |
"release_artist_name": "Blind Guardian", | |
"release_artist_names": [ | |
"Blind Guardian" | |
], | |
"release_msid": "2b7f4d17-4803-450a-856d-615d6b68ca34", | |
"spotify_album_artist_ids": [ | |
"https://open.spotify.com/artist/7jxJ25p0pPjk0MStloN6o6" | |
], | |
"spotify_album_id": "https://open.spotify.com/album/3REdsICdzsMqEVQxaePZ99", | |
"spotify_artist_ids": [ | |
"https://open.spotify.com/artist/7jxJ25p0pPjk0MStloN6o6" | |
], | |
"spotify_id": "https://open.spotify.com/track/7oAl5R0rck9DzFHoNrhcms", | |
"tracknumber": 8 | |
}, | |
"artist_name": "Blind Guardian", | |
"release_name": "Follow the Blind (Remastered 2017)", | |
"track_name": "Valhalla - Remastered 2017" | |
}, | |
"user_name": "Zastai" | |
}, | |
{ | |
"listened_at": 1589360850, | |
"listened_at_iso": "2020-05-13T09:07:30Z", | |
"track_metadata": { | |
"additional_info": { | |
"artist_msid": "36b70873-b26c-4e3c-a628-834f4e50f391", | |
"listening_from": "MusicBee", | |
"release_msid": "dbe93095-3948-4507-ad45-0836e3ba10ad" | |
}, | |
"artist_name": "DARKoO & One Acen", | |
"release_name": "U.K Single Charts", | |
"track_name": "Gangsta" | |
}, | |
"user_name": "blowhorn" | |
}, | |
{ | |
"listened_at": 1589360846, | |
"listened_at_iso": "2020-05-13T09:07:26Z", | |
"track_metadata": { | |
"additional_info": { | |
"artist_msid": "5ea7357e-faf8-4b64-bd49-30673fc681e1", | |
"release_msid": "c0667a28-f106-4b71-b1fa-0ff321708c82" | |
}, | |
"artist_name": "Big Wreck", | |
"release_name": "Ghosts", | |
"track_name": "Hey Mama" | |
}, | |
"user_name": "dkonradm" | |
}, | |
{ | |
"listened_at": 1589360836, | |
"listened_at_iso": "2020-05-13T09:07:16Z", | |
"track_metadata": { | |
"additional_info": { | |
"albumartist": "Steely Dan", | |
"artist_msid": "eb1512bc-7868-4db9-b1ca-da8455b2339b", | |
"date": "2003", | |
"discnumber": "1", | |
"release_msid": "3e4bd484-926c-4ca9-92b6-7e2d681e081a", | |
"totaldiscs": "1", | |
"totaltracks": "9", | |
"tracknumber": "1" | |
}, | |
"artist_name": "Steely Dan", | |
"release_name": "Everything Must Go", | |
"track_name": "The Last Mall" | |
}, | |
"user_name": "dalover" | |
}, | |
{ | |
"listened_at": 1589360835, | |
"listened_at_iso": "2020-05-13T09:07:15Z", | |
"track_metadata": { | |
"additional_info": { | |
"artist_msid": "c09fc83e-46ed-4ecb-984e-c4a71143f852", | |
"artist_names": [ | |
"U.S. Girls" | |
], | |
"discnumber": 1, | |
"duration_ms": 103725, | |
"isrc": "GBAFL1900393", | |
"listening_from": "spotify", | |
"release_artist_name": "U.S. Girls", | |
"release_artist_names": [ | |
"U.S. Girls" | |
], | |
"release_msid": "ada93cf6-2c09-4e54-a816-e8d2d215201f", | |
"spotify_album_artist_ids": [ | |
"https://open.spotify.com/artist/3AHFDfqhSqPBecjQDIOIJA" | |
], | |
"spotify_album_id": "https://open.spotify.com/album/66LP9b290P2kVNJB19Mi1C", | |
"spotify_artist_ids": [ | |
"https://open.spotify.com/artist/3AHFDfqhSqPBecjQDIOIJA" | |
], | |
"spotify_id": "https://open.spotify.com/track/5gWVlB3wPCrmjyUKdvsoMK", | |
"tracknumber": 5 | |
}, | |
"artist_name": "U.S. Girls", | |
"release_name": "Heavy Light", | |
"track_name": "State House (It's a Man's World)" | |
}, | |
"user_name": "Andraas" | |
}, | |
{ | |
"listened_at": 1589360832, | |
"listened_at_iso": "2020-05-13T09:07:12Z", | |
"track_metadata": { | |
"additional_info": { | |
"artist_msid": "c1e307fe-739e-4dc5-9e29-143f6961c680", | |
"rating": "", | |
"recording_mbid": "d161fd5c-b9bc-4e39-b8af-b985649d497b", | |
"release_msid": "3b5f983e-9772-48d2-87ed-43d0e2998940", | |
"source": "P", | |
"track_length": "204", | |
"track_number": "1" | |
}, | |
"artist_name": "Purple Mountains", | |
"release_name": "Purple Mountains", | |
"track_name": "That’s Just the Way That I Feel" | |
}, | |
"user_name": "Somasis" | |
}, | |
{ | |
"listened_at": 1589360832, | |
"listened_at_iso": "2020-05-13T09:07:12Z", | |
"track_metadata": { | |
"additional_info": { | |
"artist_msid": "ac24a1a7-3ef5-4adc-8438-1f8bcce70f43", | |
"artist_names": [ | |
"Rina Sawayama" | |
], | |
"discnumber": 1, | |
"duration_ms": 181506, | |
"isrc": "GBK3W1901218", | |
"listening_from": "spotify", | |
"release_artist_name": "Rina Sawayama", | |
"release_artist_names": [ | |
"Rina Sawayama" | |
], | |
"release_msid": "8d1f3daa-aca7-4c9b-97b8-7e958d7b383a", | |
"spotify_album_artist_ids": [ | |
"https://open.spotify.com/artist/2KEqzdPS7M5YwGmiuPTdr5" | |
], | |
"spotify_album_id": "https://open.spotify.com/album/3stadz88XVpHcXnVYMHc4J", | |
"spotify_artist_ids": [ | |
"https://open.spotify.com/artist/2KEqzdPS7M5YwGmiuPTdr5" | |
], | |
"spotify_id": "https://open.spotify.com/track/43bYs8QkPdCdy5esfnmU1T", | |
"tracknumber": 4 | |
}, | |
"artist_name": "Rina Sawayama", | |
"release_name": "SAWAYAMA", | |
"track_name": "Comme Des Garçons (Like The Boys)" | |
}, | |
"user_name": "Capitalism334" | |
}, | |
{ | |
"listened_at": 1589360830, | |
"listened_at_iso": "2020-05-13T09:07:10Z", | |
"track_metadata": { | |
"additional_info": { | |
"artist_msid": "3fb01692-e84d-424f-ad99-0cc5cd99cfda", | |
"rating": "", | |
"recording_mbid": "", | |
"release_msid": "cd06d591-5339-4996-b18c-ab7f4cd4a7f8", | |
"source": "R", | |
"track_length": "", | |
"track_number": "" | |
}, | |
"artist_name": "Les Posters", | |
"release_name": "Les Posters", | |
"track_name": "Agree To Disagree" | |
}, | |
"user_name": "Groschi" | |
}, | |
{ | |
"listened_at": 1589360830, | |
"listened_at_iso": "2020-05-13T09:07:10Z", | |
"track_metadata": { | |
"additional_info": { | |
"artist_msid": "087c78cc-afab-4cbd-a5ca-e5446bb60aac", | |
"release_msid": "c169e549-d077-4900-95bf-483d79721b1d" | |
}, | |
"artist_name": "Sin7sinS", | |
"release_name": "Perversion Ltd.", | |
"track_name": "Between Broken Dreams" | |
}, | |
"user_name": "Montsegur" | |
}, | |
{ | |
"listened_at": 1589360829, | |
"listened_at_iso": "2020-05-13T09:07:09Z", | |
"track_metadata": { | |
"additional_info": { | |
"artist_msid": "0739cfee-131b-41c8-8caa-fc846d6ae9be", | |
"artist_names": [ | |
"Front 242" | |
], | |
"discnumber": 1, | |
"duration_ms": 229426, | |
"isrc": "BEC261674202", | |
"listening_from": "spotify", | |
"release_artist_name": "Front 242", | |
"release_artist_names": [ | |
"Front 242" | |
], | |
"release_msid": "95fc8216-6704-4dc3-b4fd-d1eb9739ab47", | |
"spotify_album_artist_ids": [ | |
"https://open.spotify.com/artist/2tyMOS8xKREgpEwHnLc6EX" | |
], | |
"spotify_album_id": "https://open.spotify.com/album/1UZtdu8fRmeACCaJb7vCor", | |
"spotify_artist_ids": [ | |
"https://open.spotify.com/artist/2tyMOS8xKREgpEwHnLc6EX" | |
], | |
"spotify_id": "https://open.spotify.com/track/52tkWkrvp9DhGy2H5Zrig3", | |
"tracknumber": 2 | |
}, | |
"artist_name": "Front 242", | |
"release_name": "No Comment (Remastered)", | |
"track_name": "Deceit - Remastered" | |
}, | |
"user_name": "paultwig" | |
}, | |
{ | |
"listened_at": 1589360826, | |
"listened_at_iso": "2020-05-13T09:07:06Z", | |
"track_metadata": { | |
"additional_info": { | |
"artist_mbids": [ | |
"b527224c-6bf5-49fd-a96b-571c0976e29a", | |
"da00b05d-ee2f-4aac-b548-4279f494c735" | |
], | |
"artist_msid": "2d1c34c2-a794-4f95-952f-c3b920eaaa79", | |
"release_group_mbid": "4cfb58ba-bb49-4e13-83ef-ce4516287134", | |
"release_mbid": "82620456-99c9-4a26-9b0b-6e60055d368c", | |
"release_msid": "98c4a555-cca4-48f6-bba6-e93e3fb36337", | |
"track_mbid": "7742e0ad-e81c-4f1f-bbdf-088f6c460f56", | |
"tracknumber": 8 | |
}, | |
"artist_name": "Mikoto*aki", | |
"release_name": "works.4", | |
"track_name": "Imagination StepS" | |
}, | |
"user_name": "xyxxyxxy" | |
}, | |
{ | |
"listened_at": 1589360825, | |
"listened_at_iso": "2020-05-13T09:07:05Z", | |
"track_metadata": { | |
"additional_info": { | |
"artist_msid": "4aecc1a3-d8a9-4920-ab25-4a158d8b864b", | |
"release_msid": "3946539f-4e34-4878-9772-1669c45541ee" | |
}, | |
"artist_name": "The Mahones", | |
"release_name": "Paint The Town Red (The Best Of)", | |
"track_name": "100 Bucks" | |
}, | |
"user_name": "Linuzzz19" | |
}, | |
{ | |
"listened_at": 1589360823, | |
"listened_at_iso": "2020-05-13T09:07:03Z", | |
"track_metadata": { | |
"additional_info": { | |
"artist_msid": "7ff34f0a-b8d9-4660-aac6-843c146e8e26", | |
"release_msid": "78303e5e-d77a-4361-915a-61716db7e62f" | |
}, | |
"artist_name": "Peter Wackel", | |
"release_name": "Top an der Playa", | |
"track_name": "Top an der Playa" | |
}, | |
"user_name": "zwaehn" | |
}, | |
{ | |
"listened_at": 1589360821, | |
"listened_at_iso": "2020-05-13T09:07:01Z", | |
"track_metadata": { | |
"additional_info": { | |
"artist_msid": "252f3e80-37ec-4acf-b670-3b5668dd6d45", | |
"rating": "", | |
"recording_mbid": "261cb4ac-4824-42cf-9b62-acc6c8f3ec63", | |
"release_msid": "8b87e62e-bd26-458d-8470-2e88514118d3", | |
"source": "P", | |
"track_length": "295", | |
"track_number": "3" | |
}, | |
"artist_name": "Kaly Live Dub", | |
"release_name": "HydroPhonic", | |
"track_name": "Funny Bway" | |
}, | |
"user_name": "kaliko" | |
}, | |
{ | |
"listened_at": 1589360820, | |
"listened_at_iso": "2020-05-13T09:07:00Z", | |
"track_metadata": { | |
"additional_info": { | |
"artist_msid": "00a76187-bfb0-4add-99ea-d17ac0748c91", | |
"listening_from": "Plex", | |
"release_msid": "5d73f152-7400-43bb-9ba3-40d5861209e1" | |
}, | |
"artist_name": "Usher", | |
"release_name": "My Way", | |
"track_name": "Nice & Slow" | |
}, | |
"user_name": "d2dyno" | |
}, | |
{ | |
"listened_at": 1589360818, | |
"listened_at_iso": "2020-05-13T09:06:58Z", | |
"track_metadata": { | |
"additional_info": { | |
"artist_msid": "23e14575-8fae-4b13-956c-bbb7c7bbc70e", | |
"release_msid": "cd5e1e3b-5c82-4ace-9d4f-2e9fd13d6fd0" | |
}, | |
"artist_name": "Orange Goblin", | |
"release_name": "A Eulogy For The Damned", | |
"track_name": "Red Tide Rising" | |
}, | |
"user_name": "Bobmugabe" | |
}, | |
{ | |
"listened_at": 1589360817, | |
"listened_at_iso": "2020-05-13T09:06:57Z", | |
"track_metadata": { | |
"additional_info": { | |
"artist_msid": "06502aa4-ddff-4cd6-88bb-2af99d4a5ad1", | |
"release_msid": "ce7e4091-f683-46eb-a996-d3e9393e6372" | |
}, | |
"artist_name": "Tiamat", | |
"release_name": "Prey", | |
"track_name": "Cain" | |
}, | |
"user_name": "darkliquid" | |
}, | |
{ | |
"listened_at": 1589360813, | |
"listened_at_iso": "2020-05-13T09:06:53Z", | |
"track_metadata": { | |
"additional_info": { | |
"artist_msid": "23ca547b-bbbe-49d6-85c8-8aad78d05083", | |
"release_msid": "61932389-4e62-471e-98a9-5ad1f5d081b1" | |
}, | |
"artist_name": "Dimitri From Paris", | |
"release_name": "Sacrebleu", | |
"track_name": "Epilogue / Souvenirs de Paris" | |
}, | |
"user_name": "xix" | |
}, | |
{ | |
"listened_at": 1589360813, | |
"listened_at_iso": "2020-05-13T09:06:53Z", | |
"track_metadata": { | |
"additional_info": { | |
"artist_msid": "79b3ebc6-8c15-49eb-9121-a9d6fcbee39f", | |
"release_msid": "110f121f-0fea-4fd5-a288-8b4d65328792" | |
}, | |
"artist_name": "Пневмослон", | |
"release_name": "Разящая рука", | |
"track_name": "Разящая рука" | |
}, | |
"user_name": "nutternort" | |
}, | |
{ | |
"listened_at": 1589360812, | |
"listened_at_iso": "2020-05-13T09:06:52Z", | |
"track_metadata": { | |
"additional_info": { | |
"artist_msid": "83a32d64-3361-44e6-9d15-9c1013be5fe2", | |
"release_msid": null | |
}, | |
"artist_name": "piqnbibiqn & vank0_3D", | |
"track_name": "Dancho Kmeta" | |
}, | |
"user_name": "tsvyatkalin" | |
}, | |
{ | |
"listened_at": 1589360809, | |
"listened_at_iso": "2020-05-13T09:06:49Z", | |
"track_metadata": { | |
"additional_info": { | |
"artist_msid": "2d3c421e-b4b4-4f25-8ce9-c42c7d097580", | |
"release_msid": "9d321baa-c679-4aea-b0b1-b79c20de2b3c" | |
}, | |
"artist_name": "Shortparis", | |
"release_name": "Так закалялась сталь", | |
"track_name": "Жизнь за царя" | |
}, | |
"user_name": "andemik" | |
}, | |
{ | |
"listened_at": 1589360802, | |
"listened_at_iso": "2020-05-13T09:06:42Z", | |
"track_metadata": { | |
"additional_info": { | |
"artist_msid": "29969f51-b76e-402f-b2d1-010e54289147", | |
"listening_from": "Plex", | |
"release_msid": "9cf62e89-1d14-42b4-9c29-39566bf78962" | |
}, | |
"artist_name": "Eric Carmen", | |
"release_name": "Dirty Dancing", | |
"track_name": "Hungry Eyes" | |
}, | |
"user_name": "Teknojnky" | |
}, | |
{ | |
"listened_at": 1589360797, | |
"listened_at_iso": "2020-05-13T09:06:37Z", | |
"track_metadata": { | |
"additional_info": { | |
"artist_msid": "d110043c-fb54-46d0-814a-74b30ec7f2af", | |
"release_msid": "10935af3-4aaf-49de-b972-3b0bb53ee371" | |
}, | |
"artist_name": "Николай Гринько", | |
"release_name": "Наши на луне", | |
"track_name": "Сказка" | |
}, | |
"user_name": "wos_" | |
}] | |
)}) | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment