What I want to do is just shuffle a playlist and play it, but I'm not sure how shuffle is supposed to work.
I can manually "clear" then "add" songs to the queue ... now I want to shuffle them and play them.
I send the "shuffle" action, and get back a response as follows:
- Code: Select all
{
"subsonic-response" : {
"status" : "ok",
"version" : "1.13.0",
"jukeboxStatus" : {
"currentIndex" : 258,
"playing" : false,
"gain" : 0.5,
"position" : 10
}
}
}
But when I send the "start" action, it always seems to play at index 1 (first song in list). Shouldn't it start playing at 258?
Also, what does "position" mean?
Thanks!