[Release] IMDb Update (Movie Ratings + Top250 + MPAA) *Jarvis* - 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 Update (Movie Ratings + Top250 + MPAA) *Jarvis* (/showthread.php?tid=167754) |
RE: [WIP] IMDb Update (Movie Ratings + Top250) *fast* - MSingh - 2013-07-20 I've been doing some tests and after running the add-on it gives incorrect rating numbers. I've done 3 tests on the godfather movies. The Godfather *BEFORE RUNNING UPDATE* *IMDB RATINGS* *AFTER RUNNING UPDATE* ---------------------------------------------------------------------- The Godfather Part II *BEFORE RUNNING UPDATE* *IMDB RATINGS *AFTER RUNNING UPDATE* Has this happen to anyone else ? So far its for all my movies. Here is part 3 of the godfather The Godfather Part III *BEFORE RUNNING UPDATE* *IMDB RATING* *AFTER RUNNING UPDATE* RE: [WIP] IMDb Update (Movie Ratings + Top250) *fast* - `Black - 2013-07-20 That's probably because the script is using some unofficial imdb api which is not always up to date. RE: [WIP] IMDb Update (Movie Ratings + Top250) *fast* - popcornmix - 2013-07-20 I get: Code: 12:49:28 T:2783966304 ERROR: EXCEPTION Thrown (PythonToCppException) : -->Python callback/script returned the following error<-- At the failure, old contains: Code: {u'rating': 0.0, u'imdbnumber': u'tt1606378', u'votes': u'', u'movieid': 1379, u'label': u'A Good Day to Die Hard'} Looks like you need a check for votes being null. RE: [WIP] IMDb Update (Movie Ratings + Top250) *fast* - Jandalf - 2013-07-21 (2013-07-20, 04:13)MSingh Wrote: I've been doing some tests and after running the add-on it gives incorrect rating numbers. (2013-07-20, 14:25)`Black Wrote: That's probably because the script is using some unofficial imdb api which is not always up to date. yes that's right, I use http://omdbapi.com because it is much (4 times) faster than get the ratings from the IMDb site... I think they are updated once a week. I will add a comment about this to the opening post. RE: [WIP] IMDb Update (Movie Ratings + Top250) *fast* - Jandalf - 2013-07-21 (2013-07-20, 14:28)popcornmix Wrote: Looks like you need a check for votes being null. Thank you v0.4.2 (2013-07-21): - Bug fixes script.imdbupdate-0.4.2.zip RE: [WIP] IMDb Update (Movie Ratings + Top250) *fast* - SNA0815 - 2013-07-21 i get socket timeouts from time to time...: Code: 16:47:47 T:2739926080 ERROR: EXCEPTION Thrown (PythonToCppException) : -->Python callback/script returned the following error<-- RE: [WIP] IMDb Update (Movie Ratings + Top250) *fast* - popcornmix - 2013-07-21 (2013-07-21, 16:51)SNA0815 Wrote: i get socket timeouts from time to time...: I was getting those yesterday. Seems happier today. RE: [WIP] IMDb Update (Movie Ratings + Top250) *fast* - Jandalf - 2013-07-21 (2013-07-21, 16:51)SNA0815 Wrote: i get socket timeouts from time to time...: (2013-07-21, 17:39)popcornmix Wrote: I was getting those yesterday. Seems happier today. oh, timeout is handled different since Python 2.7. The Error shouldn't appear anymore (couldn't test this), but if you get this error often, maybe the timeout is too short... do you have often internet problems or a bad internet connection? Cause I never got this error. v0.4.3 (2013-07-21): - Bug fixes script.imdbupdate-0.4.3.zip RE: [WIP] IMDb Update (Movie Ratings + Top250) *fast* - MSingh - 2013-07-21 2nd update in a day ? Also how do plan on updating the TV show episodes ? Because most use thetvdb.com, which some episode naming and specials are not in imdb. just have to make sure its only getting ratings and doesn't change naming, photo album, info Etc... Also have a feature i think would be cool can have a vote with the team. as you said after watching a movie we can place a rating. If users rate a movie it gets added to this add-on's database. so it would be like having a 2nd more realistic rating. also I'm sure few 100's use this add-on. RE: [WIP] IMDb Update (Movie Ratings + Top250) *fast* - shedrock - 2013-07-22 This release seems to be working great Jandalf. Thanks for all your hard work on this project. Update: Spoke to fast. Script still failing. I will try and upload the xbmc logs later. Shedrock RE: [WIP] IMDb Update (Movie Ratings + Top250) *fast* - SNA0815 - 2013-07-22 (2013-07-21, 20:03)Jandalf Wrote: do you have often internet problems or a bad internet connection? Cause I never got this error. No, it's 100 MBit/s cable. Version 0.4.3 is running very well with no problems, thank you for fixing! RE: [WIP] IMDb Update (Movie Ratings + Top250) *fast* - Jandalf - 2013-07-25 (2013-07-21, 20:35)MSingh Wrote: 2nd update in a day ? Also how do plan on updating the TV show episodes ? Because most use thetvdb.com, which some episode naming and specials are not in imdb. just have to make sure its only getting ratings and doesn't change naming, photo album, info Etc...I will get the rating from IMDb cause thetvdb requires a API key and IMDb has a bigger user base. I will have a look how to get the right naming. I will have no problem to change only the rating... I was also thinking about a rating add-on for IMDb to vote a movie after watching but this would be a separate add-on which has no high priority. (2013-07-22, 00:53)shedrock Wrote: This release seems to be working great Jandalf. Thanks for all your hard work on this project.waiting for your log... (2013-07-22, 21:45)SNA0815 Wrote: No, it's 100 MBit/s cable. Version 0.4.3 is running very well with no problems, thank you for fixing!ok, strange because I never got timeouts. RE: [WIP] IMDb Update (Movie Ratings + Top250) *fast* - Rourke - 2013-08-17 I'd like to thank you for the great addon. It's exactly what I was looking for. I have one question about the speed of this addon though. I'm a webdeveloper and I used the OMDB API before. I'm surprised it doesn't pull 10 movies a second. Instead it does 1 movie every 1-2 seconds. With a large movie database this is quite a wait. Is there a reason for this? I'm quite happy this addons already excists, but I was just wondering this. RE: [WIP] IMDb Update (Movie Ratings + Top250) *fast* - Jandalf - 2013-08-18 (2013-08-17, 22:32)Rourke Wrote: I'd like to thank you for the great addon. It's exactly what I was looking for. I use Code: response = urllib2.urlopen("http://www.omdbapi.com/?i=tt0499549") with bad look one movie request could take above 1 sec, but this is not often. what takes time is the update changes to a movie in XBMC, this takes quite long, cause the whole movie will be deleted and reinserted in all tables. I have an idea how to improve this, but for that I need to learn C++ and compiling XBMC and more free time or do you have an idea how to improve the code above? RE: [WIP] IMDb Update (Movie Ratings + Top250) *fast* - MacGyver - 2013-08-18 Seems to work great on OpenElec 3.1.5 ION. Quick question though, is it really "searching" IMDB, or is it using the IMDB id tag stored in the database? I'm worried that if it is really keyword searching from the title that it could be corrupting valid ratings that were based upon the IMDB id from when they were added, with its "best guess" search results. I'm hoping the on-screen display of "Searching" is just for show. Thanks, by the way. |