TMDB Movie Scraper not working
Logs show the following with 3.8.6

Example refreshing "1408 (2007).mkv"

Code:
21:12:27 T:3912   DEBUG: CScraperUrl::Get: Using "UTF-8" charset for "http://api.tmdb.org/3/search/movie?api_key=XXX&query=1408&year=2007&language=en"
...
21:12:27 T:3912   DEBUG: scraper: GetSearchResults returned <results><entity><title>1408</title><id>3021</id><year>2007</year><url cache="tmdb-en-2007.json">http://api.tmdb.org/3/movie/2007?api_key=XXX&amp;language=en</url></entity><entity><title>1408</title><id>3021</id><year>2007</year><url cache="tmdb-en-2007.json">http://api.tmdb.org/3/movie/2007?api_key=XXX&amp;language=en</url></entity></results>
...
21:12:30 T:11712   DEBUG: CGUIWindowVideoBase::ShowIMDB: user selected movie '1408 (2007)' with URL 'http://api.tmdb.org/3/movie/2007?api_key=57983e31fb435df4df77afb854740ea9&language=en'

So basically instead of the movie id it queries the movie with the ID 2007 in this example. And all the IDs in that 2000-2020 range are from the year 2007. That explains why ppl. see the year 2007, because only movies from 2007 like in this ID range.

It should have taken "3021" as the ID and not the year "2007".

So the the problem lies in GetSearchResults.

Given that the change was the order of items, the regexp has been updated, but not the reference in the URL to the new position of the ID. It sill uses 1, which of course now with the new order is the year.

Let's take a look at the current code, and yes, release date is at the 1st position and ID at the 2nd, but the URLs are still constructed with $1 instead of $2.

url cache=&quot;tmdb-$INFO[language]-\1.json&quot;&gt;http://api.tmdb.org/3/movie/\1?api_key=

So replacing the 1 with a 2 in the three URL constructions in the GetSearchResults section, we should have a fix.

Quick test on my end shows that this seems to work and now uses the ID istead of the release date.
Code:
22:22:19 T:21452   DEBUG: CScraperUrl::Get: Using "UTF-8" charset for "http://api.tmdb.org/3/search/movie?api_key=XXX&query=1408&year=2007&language=en"
...
22:22:19 T:21452   DEBUG: scraper: GetSearchResults returned <results><entity><title>1408</title><id>3021</id><year>2007</year><url cache="tmdb-en-3021.json">http://api.tmdb.org/3/movie/3021?api_key=XXX&amp;language=en</url></entity><entity><title>1408</title><id>3021</id><year>2007</year><url cache="tmdb-en-3021.json">http://api.tmdb.org/3/movie/3021?api_key=XXX&amp;language=en</url></entity></results>
...
22:22:20 T:21396   DEBUG: CGUIWindowVideoBase::ShowIMDB: user selected movie '1408 (2007)' with URL 'http://api.tmdb.org/3/movie/3021?api_key=XXX&language=en'

Can some one try this fix and confirm it works for other as well?

So the devs can release a 3.8.7 as the 3.8.6 fix doesn't work properly, in case my assumptions (1st look at a scraper ever) is correct.
Reply


Messages In This Thread
TMDB Movie Scraper not working - by Unno - 2015-05-28, 22:49
RE: TMDB Movie Scraper not working - by Unno - 2015-05-29, 00:52
RE: TMDB Movie Scraper not working - by nickr - 2015-05-29, 02:10
RE: TMDB Movie Scraper not working - by burr - 2015-05-29, 11:01
RE: TMDB Movie Scraper not working - by nickr - 2015-05-29, 10:05
RE: TMDB Movie Scraper not working - by burr - 2015-05-29, 10:13
RE: TMDB Movie Scraper not working - by burr - 2015-05-29, 10:09
RE: TMDB Movie Scraper not working - by nickr - 2015-05-30, 06:15
RE: TMDB Movie Scraper not working - by dags - 2015-05-30, 17:09
RE: TMDB Movie Scraper not working - by dags - 2015-05-30, 18:20
RE: TMDB Movie Scraper not working - by dags - 2015-05-30, 19:03
RE: TMDB Movie Scraper not working - by arzaz - 2015-05-31, 20:37
RE: TMDB Movie Scraper not working - by arzaz - 2015-06-01, 23:17
RE: TMDB Movie Scraper not working - by arzaz - 2015-06-06, 19:17
RE: TMDB Movie Scraper not working - by Renns - 2015-06-06, 19:40
RE: TMDB Movie Scraper not working - by Renns - 2015-06-06, 19:58
RE: TMDB Movie Scraper not working - by arzaz - 2015-06-06, 21:55
RE: TMDB Movie Scraper not working - by arzaz - 2015-06-06, 23:53
RE: TMDB Movie Scraper not working - by Razze - 2015-07-01, 14:41
RE: TMDB Movie Scraper not working - by nickr - 2015-07-02, 01:02
RE: TMDB Movie Scraper not working - by TRaSH - 2015-07-11, 20:47
RE: TMDB Movie Scraper not working - by TRaSH - 2015-07-12, 19:10
RE: TMDB Movie Scraper not working - by TRaSH - 2015-07-12, 21:38
RE: TMDB Movie Scraper not working - by DAlba - 2015-11-12, 18:58
RE: TMDB Movie Scraper not working - by D-m-x - 2015-11-12, 19:08
RE: TMDB Movie Scraper not working - by nickr - 2015-11-13, 01:51
RE: TMDB Movie Scraper not working - by ronie - 2015-11-13, 01:58
RE: TMDB Movie Scraper not working - by DAlba - 2015-11-13, 03:25
RE: TMDB Movie Scraper not working - by nickr - 2015-11-13, 02:30
RE: TMDB Movie Scraper not working - by ronie - 2015-11-13, 11:08
RE: TMDB Movie Scraper not working - by DAlba - 2015-11-13, 05:38
RE: TMDB Movie Scraper not working - by DAlba - 2015-11-13, 05:45
RE: TMDB Movie Scraper not working - by DAlba - 2015-11-13, 06:34
RE: TMDB Movie Scraper not working - by DAlba - 2015-11-13, 17:34
RE: TMDB Movie Scraper not working - by tymmy - 2015-11-13, 18:28
RE: TMDB Movie Scraper not working - by D-m-x - 2015-11-13, 22:58
RE: TMDB Movie Scraper not working - by maaim - 2015-11-13, 23:35
RE: TMDB Movie Scraper not working - by Scythe42 - 2015-11-13, 23:36
RE: TMDB Movie Scraper not working - by jocus - 2015-11-14, 12:44
RE: TMDB Movie Scraper not working - by DAlba - 2015-11-14, 19:16
RE: TMDB Movie Scraper not working - by nickr - 2015-11-14, 23:24
RE: TMDB Movie Scraper not working - by nickr - 2015-11-15, 06:56
RE: TMDB Movie Scraper not working - by Razze - 2015-11-23, 12:14
RE: TMDB Movie Scraper not working - by nickr - 2015-11-25, 00:00
RE: TMDB Movie Scraper not working - by nickr - 2015-11-26, 20:55
RE: TMDB Movie Scraper not working - by nickr - 2015-11-27, 11:37
RE: TMDB Movie Scraper not working - by nickr - 2015-12-08, 20:55
RE: TMDB Movie Scraper not working - by nickr - 2015-12-08, 21:11
RE: TMDB Movie Scraper not working - by nickr - 2015-12-09, 09:29
RE: TMDB Movie Scraper not working - by nickr - 2015-12-10, 08:08
RE: TMDB Movie Scraper not working - by vc4u - 2015-12-28, 17:27
RE: TMDB Movie Scraper not working - by nickr - 2015-12-29, 05:22
RE: TMDB Movie Scraper not working - by vc4u - 2015-12-29, 15:15
RE: TMDB Movie Scraper not working - by nickr - 2016-01-13, 10:32
RE: TMDB Movie Scraper not working - by arzaz - 2016-03-23, 14:08
RE: TMDB Movie Scraper not working - by Chump - 2017-02-04, 14:55
RE: TMDB Movie Scraper not working - by AdeAV - 2016-04-21, 11:13
Logout Mark Read Team Forum Stats Members Help
TMDB Movie Scraper not working5