Looks like filebot use old info ?
it's not broke yet, but it will if not changed, I think ?
(now -> new)
casts -> credits
releases -> release_date
trailers -> videos
Source:
https://developers.themoviedb.org/3/mov ... ie-credits
https://developers.themoviedb.org/3/mov ... ie-details
https://developers.themoviedb.org/3/mov ... vie-videos
https://developers.themoviedb.org/3/get ... o-response
API themoviedb updates
Re: API themoviedb updates
Possibly. Will be fixed ASAP once my automated unit tests break. 
EDIT:
Fixed with r5168. But fairly untested with breaking changes to the public API of the Trailer object.

EDIT:
Fixed with r5168. But fairly untested with breaking changes to the public API of the Trailer object.
Re: API themoviedb updates
Is this the only output from trailer now ?
"[Official Trailer [Trailer] [1080] [en_US]"
I need to get the YouTube link back, how to do it ?
aka the "key" MOST be there or it's 100% useless
so be Kodi compatible again in htpc
"[Official Trailer [Trailer] [1080] [en_US]"
I need to get the YouTube link back, how to do it ?
aka the "key" MOST be there or it's 100% useless
so be Kodi compatible again in htpc
Code: Select all
def KODI_Trailer = "plugin://plugin.video.youtube/?action=play_video&videoid="
i.trailers.each{
if (it.type == 'Trailer'){
trailer(KODI_Trailer+it.key)
}
}
Re: API themoviedb updates
Here's what I get from the API. Presumably, key is what you're looking for? I'll add that property to the Trailer class.
@see https://pastebin.com/tCHA8vQh
EDIT:
Fixed with r5169.
Code: Select all
{
"id":"533ec659c3a36854480009ee",
"iso_639_1":"en",
"iso_3166_1":"US",
"key":"ejxQOv53lXs",
"name":"Trailer 2",
"site":"YouTube",
"size":720,
"type":"Trailer"
}
EDIT:
Fixed with r5169.