Oh I see, hmm I don’t understand this Tracklist controller: mopidy.tracklist.add
I want add a song from Soundcloud in the Queue with that command on Javascript.
I have this:
mopidy.tracklist.add({“tracks”:null,“at_position”:null,“uri”:null}).then(function(data){
console.log(data);
});
but doesn’t work
for add a video from Youtube I have this:
mopidy.tracklist.add(null,0,‘youtube:video/test.1qMPcCXYKU0’).then(function(data){
console.log(data);
});