[RELEASE] TheMovieDB Scraper for Movies
#31
(2013-02-18, 08:44)olympia Wrote: You set it to be hidden, because it is displayed by default. You should find the place again... You know, most of the times it make sense to read the options you set/enable, not just blindly enable everything as the more was better.

It's in settings, you will find it.

Thanks for your reply but maybe you should ask me first if I had indeed disabled it - which I hadn't, before you go off on a rant!
Image
Reply
#32
Looks like it can't find HD-Trailers anymore
(I refreshed the same movie, on the same scraper's settings. Before that I had the trailer, after that I no longer have it).

Then I have to say that HD-Trailers were slooooow at buffering... maybe they just brought all of them down... ?
Reply
#33
Question 
Hi

Is this the proper place for feature requests concerning "TheMovieDB" add-on? I'm really excited about the results of this add-on but definitively missing one feature:

Especially in combination with the option "keep original title" it would be awesome to have another option leading the scraper to also download the poster in the original language of the movie Nod (or a custom language if anyone would want this)! Of course it should fall back on posters in "preferred language" if no posters in the original language exist.

This shouldn't be too difficult to implement I guess since the posters on themoviedb.org already have a language attribute...
In the current version of this add-on movies always get different titles and "poster titles" if the option "keep original title" is activated and the orignal title isn't in the "preferred language". This is pretty annoying in my view and at least inconsistent from a technical view.

I hope others feel the same Smile

PS: I'm using XBMC 12.1 and TheMovieDB 3.7.2
Reply
#34
there seems to be an utf8 encoding problem:

Code:
18:47:00 T:4638216192   DEBUG: FindMovie: Searching for 'Dänische Delikatessen' using The Movie Database scraper (path: '/Applications/XBMC.app/Contents/Resources/XBMC/addons/metadata.themoviedb.org', content: 'movies', version: '3.7.2')
18:47:00 T:4638216192   DEBUG: scraper: CreateSearchUrl returned <url>http://api.themoviedb.org/3/search/movie?api_key=57983e31fb435df4df77afb854740ea9&amp;query=d?%a4nische%20delikatessen&amp;year=2003&amp;language=de</url>
18:47:00 T:4638216192   DEBUG: CurlFile::Open(0x117d09af0) http://api.themoviedb.org/3/search/movie?api_key=57983e31fb435df4df77afb854740ea9&query=dÃ%a4nische%20delikatessen&year=2003&language=de

the ä is encoded in ?%a4 -> this looks like double utf8 encoding

the right encodings are here:
http://www.fileformat.info/info/unicode/.../index.htm

html entity in hex works:
Code:
http://api.themoviedb.org/3/search/movie?api_key=57983e31fb435df4df77afb854740ea9&query=d&#xe4;nische%20delikatessen&year=2003&language=de

html entity in decimal works:
Code:
http://api.themoviedb.org/3/search/movie?api_key=57983e31fb435df4df77afb854740ea9&query=d & # 2 2 8 ;nische%20delikatessen&year=2003&language=de
whitespaces must be removed!

but utf8 encoded ä doesn't work:
Code:
http://api.themoviedb.org/3/search/movie?api_key=57983e31fb435df4df77afb854740ea9&query=d%C3%A4nische%20delikatessen&year=2003&language=de

could you please look at this?
Reply
#35
why is slovak language missing in this addon? please fix it, thanks
Reply
#36
I am having the same problem with german special characters as bulinski (2 posts above me):
Code:
15:01:25 T:7788   DEBUG: VideoInfoScanner: No NFO file found. Using title search for 'X:\Video\Movies\Bolt - Ein Hund für alle Fälle (2008).avi'
15:01:25 T:7788   DEBUG: ADDON::CScraper::FindMovie: Searching for 'Bolt - Ein Hund für alle Fälle' using The Movie Database scraper (path: 'D:\Programme\Media\XBMC\addons\metadata.themoviedb.org', content: 'movies', version: '3.7.2')
15:01:25 T:7788   DEBUG: scraper: CreateSearchUrl returned <url>http://api.themoviedb.org/3/search/movie?api_key=57983e31fb435df4df77afb854740ea9&amp;query=bolt%20-%20ein%20hund%20f%c3%bcr%20alle%20f%c3%a4lle&amp;year=2008&amp;language=de</url>
15:01:25 T:7788   DEBUG: CurlFile::Open(0A6A5B58) http://api.themoviedb.org/3/search/movie?api_key=57983e31fb435df4df77afb854740ea9&query=bolt%20-%20ein%20hund%20f%c3%bcr%20alle%20f%c3%a4lle&year=2008&language=de
15:01:25 T:7788    INFO: XCURL::DllLibCurlGlobal::easy_aquire - Created session to http://api.themoviedb.org
15:01:25 T:7788   DEBUG: scraper: GetSearchResults returned <results></results>
15:01:25 T:7788   DEBUG: ADDON::CScraper::FindMovie: Searching for 'Bolt   Ein Hund für alle Fälle' using The Movie Database scraper (path: 'D:\Programme\Media\XBMC\addons\metadata.themoviedb.org', content: 'movies', version: '3.7.2')
15:01:25 T:7788   DEBUG: scraper: CreateSearchUrl returned <url>http://api.themoviedb.org/3/search/movie?api_key=57983e31fb435df4df77afb854740ea9&amp;query=bolt%20%20%20ein%20hund%20f%c3%bcr%20alle%20f%c3%a4lle&amp;year=2008&amp;language=de</url>
15:01:25 T:7788   DEBUG: CurlFile::Open(0A6A5B58) http://api.themoviedb.org/3/search/movie?api_key=57983e31fb435df4df77afb854740ea9&query=bolt%20%20%20ein%20hund%20f%c3%bcr%20alle%20f%c3%a4lle&year=2008&language=de
15:01:25 T:7788   DEBUG: scraper: GetSearchResults returned <results></results>
15:01:25 T:7788 WARNING: No information found for item 'X:\Video\Movies\Bolt - Ein Hund für alle Fälle (2008).avi', it won't be added to the library.

Please help! Thank you!
Reply
#37
@devkid:
seems they're re-programming the themoviedb API-Search:
http://www.themoviedb.org/talk/51762e7119c2954dfd43dc13
Reply
#38
Thanks for the info. I have hope Smile
Reply
#39
Is it possible to translated the word "Rated" in the German translation into "FSK"?

So that the result is something like:

Altersfreigabe: FSK 16 instead of Altersfreigabe: Rated 16 or remove "Rated" completly"

That would make more sense under the German surface.

Thanks in advance.
Reply
#40
(2013-05-07, 16:14)MeC!as Wrote: Is it possible to translated the word "Rated" in the German translation into "FSK"?

So that the result is something like:

Altersfreigabe: FSK 16 instead of Altersfreigabe: Rated 16 or remove "Rated" completly"

That would make more sense under the German surface.

Thanks in advance.

Use the Universal Scraper and configure this as you wish.
Reply
#41
Thanks for the advise. Didn't know the universal scraper. Works fine for me.
Reply
#42
@Devkid:

yesterday a new search with umlauts was ok.

search seems to be fixed since 8th may:
http://www.themoviedb.org/talk/51762e7119c2954dfd43dc13
Reply
#43
Yay, thanks for noticing. Thats good news!
Reply
#44
Is it on my side or is scraping from TMDB extremely slow at the moment? Takes me like several hours to scrape ~300 movies.
Reply

Logout Mark Read Team Forum Stats Members Help
[RELEASE] TheMovieDB Scraper for Movies0