Normal
I have all movies in individual folders. While many of the folders for various reasons have crappy names they are all properly tagged with their IMDB-IDs, e.g. "crappy.name.xyz.xvid.blabla (2013) (tt1234567)". MP recognises the ID, tries to do the search using it and fails. I had a quick look at the code and it seems to me as if gettitles(), using Grabber.API_SearchMovie + "?api_key=" + Grabber.API_KEY; where API_SearchMovie = API_BaseUrl + "search/movie";, is always called no matter what it's searching for. I think that in order to search using IMDB IDs you need to use something like API_BaseURL + "movie/" + IMDBID + "?api_key=" + Grabber.API_KEY;. If I'm right, perhaps this could be added? //W
I have all movies in individual folders. While many of the folders for various reasons have crappy names they are all properly tagged with their IMDB-IDs, e.g. "crappy.name.xyz.xvid.blabla (2013) (tt1234567)". MP recognises the ID, tries to do the search using it and fails.
I had a quick look at the code and it seems to me as if gettitles(), using Grabber.API_SearchMovie + "?api_key=" + Grabber.API_KEY; where API_SearchMovie = API_BaseUrl + "search/movie";, is always called no matter what it's searching for. I think that in order to search using IMDB IDs you need to use something like API_BaseURL + "movie/" + IMDBID + "?api_key=" + Grabber.API_KEY;. If I'm right, perhaps this could be added?
//W