I want to get a list of all movies in my XBMC database, regardless of if they are in a movie set. The standard call to "VideoLibrary.GetMovies" does not cut it, as you can see below. It returns a single file, with a "videodb://" protocol.
Is there another call I can use to dig into the movie set? Any other ideas? I don't know enough about how XBMC handles movie sets to know what to do from here.
Is there another call I can use to dig into the movie set? Any other ideas? I don't know enough about how XBMC handles movie sets to know what to do from here.
Code:
{"jsonrpc": "2.0", "method": "VideoLibrary.GetMovies", "id": "1"}
{
"id" : "1",
"jsonrpc" : "2.0",
"result" : {
"end" : 1,
"movies" : [
{
"fanart" : "special://masterprofile/Thumbnails/Video/Fanart/ffffffff.tbn",
"file" : "videodb://1/7/5/",
"label" : "My Movie Set",
"thumbnail" : "special://masterprofile/Thumbnails/Video/f/feb6af9f.tbn"
}
],
"start" : 0,
"total" : 1
}
}