Skip to content

Instantly share code, notes, and snippets.

@mitchellmebane
Created April 18, 2015 18:04
Show Gist options
  • Save mitchellmebane/0a5def240d3d69c7df05 to your computer and use it in GitHub Desktop.
Save mitchellmebane/0a5def240d3d69c7df05 to your computer and use it in GitHub Desktop.
Juqster add any YouTube video
> 42["addSongToPlaylist",{"hubId":"planodomination","song":{"id":"0HR4hp_-kSI","value":"Numa Numa Original Music Video","thumbnail":"https://i.ytimg.com/vi/0HR4hp_-kSI/mqdefault.jpg","duration":"3:35","durationInSeconds":215,"provider":1,"permalink":"https://www.youtube.com/watch?v=0HR4hp_-kSI","label":"Numa Numa Original Music Video"}}]
< 42["songAddedToPlaylist",{"addedSong":{"identifier":"0HR4hp_-kSI","label":"Numa Numa Original Music Video","duration":"3:35","durationInSeconds":215,"thumbnail":"https://i.ytimg.com/vi/0HR4hp_-kSI/mqdefault.jpg","likes":["MitchBot"],"dislikes":[],"addedAt":"2015-04-18T01:46:34.346Z","addedBy":"MitchBot","provider":1,"permalink":"https://www.youtube.com/watch?v=0HR4hp_-kSI","wasRecycled":false},"wasRecycled":false}]
> 42["removeSong",{"hubId":"planodomination","songIdentifier":"0HR4hp_-kSI"}]
< 42["removedSong",{"songIdentifier":"0HR4hp_-kSI"}]
< 42["songRemovedFromPlaylistNotification",{"songLabel":"Numa Numa Original Music Video"}]
var socket = io();
socket.on('songAddedToPlaylist', function (data) {
console.log('songAddedToPlaylist: ', JSON.stringify(data));
});
socket.emit('addSongToPlaylist', {
"hubId": "planodomination",
"song": {
"id": "36reZ9-3VK0",
"value": "Portal- Still Alive HD",
"thumbnail": "https://i.ytimg.com/vi/36reZ9-3VK0/mqdefault.jpg",
"duration": "3:04",
"durationInSeconds": 184,
"provider": 1,
"permalink": "https://www.youtube.com/watch?v=36reZ9-3VK0",
"label": "Portal- Still Alive HD"
}
});
socket.emit('addSongToPlaylist', {
"hubId": "planodomination",
"song": {
"id": "dVVZaZ8yO6o",
"value": "Portal 2: End Credits Song 'Want You Gone' by Jonathan Coulton",
"thumbnail": "https://i.ytimg.com/vi/dVVZaZ8yO6o/mqdefault.jpg",
"duration": "2:18",
"durationInSeconds": 138,
"provider": 1,
"permalink": "https://www.youtube.com/watch?v=dVVZaZ8yO6o",
"label": "Portal 2: End Credits Song 'Want You Gone' by Jonathan Coulton"
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment