Kodi Community Forum

Full Version: Scrapers and .nfo files
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

maybe I just didn't understand the manual ans somebody can help me out.

As described in the manual I have put .nfo files into the folders where the movies are stored. The .nfo files contain an ofdb URL pointing to the movie. Nothing else, just the URL.
For my understanding the scraper should pick up the URL and find the right information. But it doesn't.

An Example: The .nfo in the folder for the movie "Bank Job" contains
Code:
http://www.ofdb.de/view.php?page=film&fid=138545

The debug log says the following:


Code:
01:11:30 T:2997869456 M:1739964416   DEBUG: OpenDir - Using authentication url smb://TITAN/filme/0004-%20Bank%20Job
01:11:30 T:2997869456 M:1739964416   DEBUG: Sort, sorting took 0 millis
01:11:30 T:2997869456 M:1739964416   DEBUG: DoScan Scanning dir 'smb://TITAN/filme/0004- Bank Job/' as not in the database
01:11:30 T:2997869456 M:1739964416   DEBUG: Hash[movies,smb://TITAN/filme/0004- Bank Job/]:DB=[],Computed=[389BE1897EECF06224E5835A8785CAAE]
01:11:30 T:2997869456 M:1739964416   DEBUG: OpenDir - Using authentication url smb://TITAN/filme/0004-%20Bank%20Job
01:11:30 T:2997869456 M:1739964416   DEBUG: Found matching nfo file: smb://TITAN/filme/0004- Bank Job/0004.nfo
01:11:30 T:2997869456 M:1739964416   DEBUG: CFileSMB::Open - opened filme/0004- Bank Job/0004.nfo, fd=10000
01:11:30 T:2997869456 M:1739964416   DEBUG: CFileSMB::Close closing fd 10000
01:11:30 T:2997869456 M:1739964416   DEBUG: Not a proper xml nfo file (Error document empty., col 0, row 0)
01:11:30 T:2997869456 M:1739964416   DEBUG: FileCurl::Open(0xb3b176e4) http://www.ofdb.de/view.php?SText=0004%2d%20bank%20job&Kat=Titel&page=suchergebnis&sourceid=mozilla-search
01:11:31 T:2997869456 M:1739968512   DEBUG: FileCurl::Close(0xb3b176e4) http://www.ofdb.de/view.php?SText=0004%2d%20bank%20job&Kat=Titel&page=suchergebnis&sourceid=mozilla-search
01:11:31 T:2997869456 M:1739968512   DEBUG: scraper: GetSearchResults returned <?xml version="1.0" encoding="utf-8" standalone="yes"?><results></results>
01:11:31 T:2997869456 M:1739968512   DEBUG: SQLite collision
01:11:31 T:3049490320 M:1739968512   DEBUG: SQLite collision
01:11:31 T:2997869456 M:1739968512   DEBUG: DoScan - Finished dir: smb://TITAN/filme/0004- Bank Job/

Obviously, my .nfo ist found but not recognized. What do I do wrong?

System Data:

XBMC Live 9.04.1 (with persistent storage)
on Acer Aspire Revo, i686

Full log: http://pastebin.com/m638143ea

Any help would be greatly appreciated.


Ben
nebu Wrote:Hi,

An Example: The .nfo in the folder for the movie "Bank Job" contains
Code:
http://www.ofdb.de/view.php?page=film&fid=138545

that's not a valid .nfo file. it's missing the xml tags.
check the wiki on how to create to create them.
Alright....after trying for hours an posting here, it came to my mind to look at the scraper. Confused

The URL needs to be http://www.ofdb.de/film/138545, instead of http://www.ofdb.de/view.php?page=film&fid=138545 because that's what the scraper ist looking for.

Sorry!