[RELEASE] IMDB Ratings for Movies - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33) +--- Forum: Add-on Support (https://forum.kodi.tv/forumdisplay.php?fid=27) +---- Forum: Program Add-ons (https://forum.kodi.tv/forumdisplay.php?fid=151) +---- Thread: [RELEASE] IMDB Ratings for Movies (/showthread.php?tid=92132) |
- carmatana - 2011-06-08 Cosmicr, I tested it on a Mac (10.6) and XBMC 10.1 Seems that it works well, the script updates both rating and votes but found a couple of issues: a) I have a couple of profiles, each one with its own sources and media info (different databases) No matter in what profile I am logged on, the script runs over the standard (master) database, not over the logged on profile database. It would be nice to pick the right database depending on the profile. b) It does not have any impact to the top250 field. I am not sure if this is part of the scope of the script or no. c) I had to run several times the script to update my whole collection, it stopped from time to time. Thanks for sharing your work with other xbmc users. - frellAn - 2011-07-22 Could some nice pythoncoder develop this into a fully working app? This idea is great. - Gitrian - 2011-08-12 I tried it on my Apple-tv and got the same error regarding Ascii-encoding, so I decided to take a look at the source-code to see if I could fix it. File: default.py Change line 114 from Code: xbmc.executebuiltin('xbmc.Notification(IMDB Ratings,'+title[j]+')') to Code: xbmc.executebuiltin('xbmc.Notification(IMDB Ratings,'+title[j].encode("ascii", "ignore")+')') I also have some movies in my database with no IMDB-id and it causes the script to put the ratings in the wrong movies. Change line 122 from Code: j = j + 1 to Code: else: - Evergreen4 - 2011-11-26 Cosmicr, this is the script I was waiting for years... any news regarding the windows version? Thanks a lot for taking the time to develop this tool for us. Cheers - n4sa - 2012-01-01 This is the error im getting.. any ideas?? Code: 18:59:10 T:2792 NOTICE: -->Python Interpreter Initialized<-- - krish_2k4 - 2012-01-01 Evergreen4 Wrote:Cosmicr, this is the script I was waiting for years... any news regarding the windows version? there is one already. http://forum.xbmc.org/showthread.php?tid=107331 - probeh - 2012-01-31 The megaupload links are dead, could you please re-upload somewhere else? Thanks for making this, I just wish I could use it! - Eisi2005 - 2012-01-31 +1 could anyone please upload the script on an other filehoster ? Thanks Greets Eisi - cosmicr - 2012-02-09 Hey all, I've re-uploaded the files to a new host, and also included a new version fixing some of the things that have been pointed out. Check out the first post. - cosmicr - 2012-02-12 Hey All, another update. I've added MySQL support for those with shared databases. Be warned I couldn't work out a decent way to backup the mysql database first, so be sure you have your own backup. I've uploaded the code to github, as an experiment since I've never used VCS's before. It should work on all systems now too. If you want anything added let me know and I'll see what I can do. - robwiel - 2012-02-21 does not work for me with portable installation - Eisi2005 - 2012-02-21 @cosmicr the script does not work for me too. I become a script error and then the message the movie update will take a long time and after 5 seconds the screen close. Here is a debug log from me. http://pastebin.com/AW0MNivu I use XBMC 10.1 Greets Eisi - Jaken - 2012-02-22 Could this be extended for updating movies with set information from themoviedb? That would be neat! - cosmicr - 2012-02-22 @robwiel & @Eisi2005: Sorry, the latest update makes it incompatible with Dharma. Eden only from now on. The changes are minimal, so you may be able to edit the source to make it work. Mostly just the path related functions. @Jaken: I haven't worked with movie sets before, but this feature could be for another addon. I'll look into it. - Eisi2005 - 2012-02-22 @cosmicr thx for the answer. I hope Eden final will released in the next weeks, so i could wait and use your script then. Greets Eisi |