![]() |
|
MovieMeter.nl (Dutch Movies) Scraper development... - Printable Version +- XBMC Community Forum (http://forum.xbmc.org) +-- Forum: Help and Support (/forumdisplay.php?fid=33) +--- Forum: Add-ons Help and Support (/forumdisplay.php?fid=27) +---- Forum: Metadata scrapers (/forumdisplay.php?fid=147) +---- Thread: MovieMeter.nl (Dutch Movies) Scraper development... (/showthread.php?tid=28297) |
- Bigfoot87 - 2009-12-18 00:04 The_Ghost16 Wrote:Yesterday i started with a moviemeter scraper. Great news!..
- brulsmurf - 2009-12-18 16:22 The_Ghost16 Wrote:Yesterday i started with a moviemeter scraper. Good luck with that! I hope it works out, in which case I will definitely use it. Please note however that you may run into trouble, because the API only allows so many calls from the same IP address. If you access it through a website, all people that use your scraper will access the Moviemeter site through the same IP address (namely the website server's). I think you should check with the Moviemeter API administrator just how many calls will be allowed to see if there is a practical limitation here. I think there will be. - frankied - 2009-12-25 23:05 The_Ghost16 Wrote:Yesterday i started with a moviemeter scraper. Since a couple of days I have a similar setup running. Please find the scraper file attached. It gets movie information and thumbs from moviemeter and adds fanart from themoviedb. Code: <?xml version="1.0" encoding="utf-8" standalone="no"?><scraper framework="1.1" date="2009-12-13" name="MovieMeter" content="movies" thumb="moviemeter.jpg" language="nl">- redje - 2009-12-26 12:53 I was thrilled to finally see a dutch movie scraper, my gf will be very pleased. i tried you're setting in a file moviemeter.xml, but the scraper doesn't come up in the scraper selection menu. Any idea what i'm doing wrong? - jpschouten - 2009-12-26 16:01 Same as redje ! very exited to see a moviemeter scraper workin on !! but how to use this ? Also my GF will be very pleased i think MANY MANY GF and BF will be pleased - frankied - 2009-12-26 16:27 redje Wrote:I was thrilled to finally see a dutch movie scraper, my gf will be very pleased. jpschouten Wrote:Same as redje ! very exited to see a moviemeter scraper workin on !! but how to use this ? Also my GF will be very pleased i think MANY MANY GF and BF will be pleased As soon as I find a way to include attachments I will post instructions to get a moviemeter-based scraper up and running ..... - jpschouten - 2009-12-26 16:35 maybe you can upload it to http://www.megaupload.com/ or something. And supply us with the link and instructions !? - frankied - 2009-12-26 22:54 jpschouten Wrote:maybe you can upload it to http://www.megaupload.com/ or something. Step 1: Get a key to access the moviemeter API from http://www.moviemeter.nl/site/registerclient/ Step 2: Setup a local website which gives access to the moviemeter API sudo apt-get install nanoweb create a directory moviemeter in /usr/share/nanoweb/defaultroot/ put the contents from moviemeter API in the moviemeter directory. Replace the xxxx with your own key in de search.php and film.php files. Step 3: Put the scraper files from Moviemeter scraper to /usr/share/xbmc/system/scrapers/video/ This should be it ... If someone could host the ¨fake¨ moviemeter website that gives access to the API, it can become a regular scraper without having to install a local webserver. - jpschouten - 2009-12-27 10:39 Strange, i followed your guide. Can select Moviemeter at the scraper-section. But when i try to update the library nothing happends. He doesn't get info ? I checked permissions on the files, any idea
- frankied - 2009-12-27 11:49 jpschouten Wrote:Strange, i followed your guide. Can select Moviemeter at the scraper-section. But when i try to update the library nothing happends. He doesn't get info ? I checked permissions on the files, any idea First check if the local website is up and running from your browser: http://127.0.0.1/moviemeter/search.php?film=madagascar You should get a page like this: search results:array(2) { [0]=> array(12) { ["filmId"]=> string(5) "13894" ["url"]=> string(35) "http://www.moviemeter.nl/film/13894" ["title"]=> string(10) "Madagascar" ["alternative_title"]=> string(0) "" ["year"]=> string(4) "2005" ["average"]=> string(4) "3.19" ["votes_count"]=> string(4) "2072" ["similarity"]=> string(6) "100.00" ["directors_text"]=> string(45) "geregisseerd door Eric Darnell en Tom McGrath" ["actors_text"]=> string(64) "met de stemmen van Ben Stiller, Chris Rock en Jada Pinkett Smith" ["genres_text"]=> string(19) "Animatie / Avontuur" ["duration"]=> string(2) "80" } [1]=> array(12) { ["filmId"]=> string(5) "46166" ["url"]=> string(35) "http://www.moviemeter.nl/film/46166" ["title"]=> string(27) "Madagascar: Escape 2 Africa" ["alternative_title"]=> string(0) "" ["year"]=> string(4) "2008" ["average"]=> string(4) "3.22" ["votes_count"]=> string(3) "948" ["similarity"]=> string(5) "54.05" ["directors_text"]=> string(45) "geregisseerd door Eric Darnell en Tom McGrath" ["actors_text"]=> string(61) "met de stemmen van Ben Stiller, Chris Rock en David Schwimmer" ["genres_text"]=> string(19) "Animatie / Avontuur" ["duration"]=> string(2) "89" } } |