Page 1 of 1

Movies found in www.themoviedb.org but not found when using Fetch Data with TheMoveDb

Posted: 14 Sep 2019, 13:49
by MikeB80
Trying to rename movie files for use in Kodi.
Almost all have been done, with the exception of 5 movies:
2019;
Don't come back from the Moon
In bed with a Killer
Last Glimpse
2018;
All the Devil's Men
2017;
Renegades
I thought these maybe were not in the database, but when looking online at TMDB, all can be found. Why can they not be found by TheMovieDB when fetching data?

Re: Movies found in www.themoviedb.org but not found when using Fetch Data with TheMoveDb

Posted: 14 Sep 2019, 17:02
by rednoah
Can you provide file names and TMDB links?

Re: Movies found in www.themoviedb.org but not found when using Fetch Data with TheMoveDb

Posted: 15 Sep 2019, 00:25
by kim
I can't see a problem getting the correct movies ?
maybe a path or cache problem ?

BUT why does Filebot do this ?

"Don't come back from the Moon"
Query Movie => [dont come back from the moon 2019, t come back from the moon 2019]
api call = OK

Code: Select all

query=dont+come+back+from+the+moon&year=2019
but then = WHY ?

Code: Select all

query=t+come+back+from+the+moon&year=2019
it does not do this with "All the Devil's Men"
Query Movie => [all the devils men 2018]

Code: Select all

query=all+the+devils+men&year=2018

Re: Movies found in www.themoviedb.org but not found when using Fetch Data with TheMoveDb

Posted: 15 Sep 2019, 06:49
by rednoah
kim wrote: 15 Sep 2019, 00:25 BUT why does Filebot do this ?

"Don't come back from the Moon"
Query Movie => [dont come back from the moon 2019, t come back from the moon 2019]
Probably caused by release group DON matching the first token in the word sequence [don, t, come, ...].


EDIT:

Fixed with FileBot r6712 by requiring release group patterns not be followed by \p{Po}. Thanks for noticing this peculiarity.