2007-06-16, 18:29
I'm making a scraper for AsianDB.com. It seems to work flawlessly under scrap.exe, but XBMC misses a lot of info it retrieves. Here's an example details XML output:
XBMC doesn't extract the director, genre, credits (correct way to enter writers?) and actors, but does get all other items.
Is there a bug in my XML output? (Note: pretty-printed for readability, no extra whitespace in actual XML)
Also, pressing X+Y during boot did get me in debug mode, but didn't tell much about the scraping process. Is there a method (like in the old days
) to set the debuglevel to 'insane' or similar?
Thanks for any help you can give,
ezd
Code:
<details>
<title>Violent Cop</title>
<year>1989</year>
<director>Takeshi Kitano</director>
<runtime>103mins</runtime>
<thumb>http://www.asiandb.com/data/title/mini/4141.jpg</thumb>
<rating>7</rating>
<votes>3</votes>
<genre>Action</genre>
<genre>Crime</genre>
<credits>Takeshi Kitano</credits>
<credits>Hisashi Nozawa</credits>
<actor>
<name>Takeshi Kitano</name>
</actor>
</details>
XBMC doesn't extract the director, genre, credits (correct way to enter writers?) and actors, but does get all other items.
Is there a bug in my XML output? (Note: pretty-printed for readability, no extra whitespace in actual XML)
Also, pressing X+Y during boot did get me in debug mode, but didn't tell much about the scraping process. Is there a method (like in the old days

Thanks for any help you can give,
ezd