[REQ] Very Simple nfo Scraper
#1
hello i am not too good at coding apps and if someone could make a very simple program for me it would help alot.
I have over 2K movies that i backed up from my dvds. and i want to import them into XBMC. what i need is a small app that scrapes imdb for the title and then writes the title, year and id to an nfo file that is named the same as the movie.
Ex.
Banlieue 13[2004].mkv
Banlieue 13[2004].nfo

XML example
Code:
<?xml version="1.0" encoding="utf-8"?>
<movie>
  <title>Banlieue 13</title>
  <year>2004</year>
  <id>tt0414852</id>
</movie>


its very simple. i really liked this http://forum.xbmc.org/showthread.php?tid=45714 but it dl's all the data and i cant chose what i dont want. if someone can do this or give me a hand in doing it it would help alot Smile
Reply
#2
Why not just do a full scrape with xbmc or one of the external scrapers ?

Ember can already scrape a minimal amount of info very close to what you want, for example

Code:
<?xml version="1.0" encoding="utf-8"?>
<movie xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <title>Knowing</title>
  <originaltitle>Knowing</originaltitle>
  <id>tt0448011</id>
  <year>2009</year>
  <rating>0</rating>
  <fileinfo />
</movie>
Reply
#3
ahh thanks you verry much ember works Smile
Reply

Logout Mark Read Team Forum Stats Members Help
[REQ] Very Simple nfo Scraper0