[RELEASE] IMDb Trailers (Video) Add-on

  Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Post Reply
namtih Offline
Junior Member
Posts: 20
Joined: Dec 2012
Reputation: 0
Post: #21
Videos playing fine, but I don't see any posters and/or fanart. Is it possible to add this?
If important, I'm using the reFocus BIG skin.
find quote
queeup Offline
Fan
Posts: 734
Joined: Feb 2009
Reputation: 15
Post: #22
Code:
plugin.video.imdb.trailers: updated to v2.0.6
-fixes Useragent filtering
-add all genres as comma separated list
-thanks to thomaswr.

Quote: Videos playing fine, but I don't see any posters and/or fanart. Is it possible to add this?
If important, I'm using the reFocus BIG skin.
Posters working fine here. Fanart not sure Smile I am ultra busy. Sorry for long delays Sad
find quote
namtih Offline
Junior Member
Posts: 20
Joined: Dec 2012
Reputation: 0
Post: #23
No, unfortunately no posters here.
But probably an issue in combination with the reFocus BIG skin, when it's still working for you.

But videos playing fine and that's the most important thing. So take your time... Smile


Edit:
The addon "The Trailers" seems to use a similar list view and the posters are working there.
So perhaps you can find there what would be a better way to display it.
forum.xbmc.org/showthread.php?tid=119587
(This post was last modified: 2013-03-11 16:32 by namtih.)
find quote
karrade Offline
Junior Member
Posts: 9
Joined: Oct 2012
Reputation: 0
Post: #24
is anyone else having a problem when trying to add to couchpotato? (it just never shows up)..

also not sure if im missing something but the app on my phone requires the couchpotato api, am i supposed to put the api in this addon somewhere?

--EDIT

I Filled out the CouchPotato Section Correctly and then selected a movie to "Add to CouchPotato" but nothing worked..

after posting this message I setup CouchPotatoServer Section the same way and selected a Movie to "Add to CouchPotatoServer" and it worked like a charm, am i missing something or shouldnt the first one be the one working?

--EDIT AGAIN

Nevermind, im sorry lol it looks like CouchPotato V2 is CPS and I have V2... Now all i have to do is figure out how to automatically show everyone else in the house our CP wanted list without giving out the password.
(This post was last modified: 2013-03-21 04:30 by karrade.)
find quote
queeup Offline
Fan
Posts: 734
Joined: Feb 2009
Reputation: 15
Post: #25
(2013-03-08 17:58)namtih Wrote:  No, unfortunately no posters here.
But probably an issue in combination with the reFocus BIG skin, when it's still working for you.

But videos playing fine and that's the most important thing. So take your time... Smile


Edit:
The addon "The Trailers" seems to use a similar list view and the posters are working there.
So perhaps you can find there what would be a better way to display it.
forum.xbmc.org/showthread.php?tid=119587

I will check again.
find quote
namtih Offline
Junior Member
Posts: 20
Joined: Dec 2012
Reputation: 0
Post: #26
I have the issue also with another Video addon and sphere was so kind to have a closer look to it. According to him it's a skin issue.
http://forum.xbmc.org/showthread.php?tid...pid1389268

So we will see, if it gets fixed :-)
find quote
queeup Offline
Fan
Posts: 734
Joined: Feb 2009
Reputation: 15
Post: #27
Thanks for info. You save me from a lot of investigation Smile

I am going to remove Couchpotato V1 support. If anybody using it, it's time to move on V2 Smile
(This post was last modified: 2013-04-07 10:47 by queeup.)
find quote
queeup Offline
Fan
Posts: 734
Joined: Feb 2009
Reputation: 15
Post: #28
plugin.video.imdb.trailers: updated to v2.0.7
-removed couchpotato V1 support
find quote
wellspokenman Offline
Senior Member
Posts: 107
Joined: Jul 2012
Reputation: 1
Post: #29
+1 getting 403 errors from IMDB when using urllib2 to scrape. (Not a Trailers problem, but thought you'd like to know that you're not alone).

Like wikipedia and several others, you need to declare headers in order to interact with their sites with urllib. This code works:
Code:
#begin loop for the imdb url list
   for imdburl in imdburllist:
      listid=imdburl.split('/')[4]
      opener = urllib2.build_opener()
      opener.addheaders = [('User-agent', 'Mozilla/5.0')]
      infile = opener.open(imdburl)
      imdbpage=infile.read()
      infile.close()
# searches the urllib results using re and regex, returns IMDBIDs
      imdblist = re.findall(r'<a href="/title/(tt[0-9]{7})/">.+?</a>', imdbpage)
      imdbuser = re.findall(r'<title>IMDb: (.+?)&#x27;s Watchlist</title>', imdbpage)
(This post was last modified: 2013-05-04 14:39 by wellspokenman.)
find quote
queeup Offline
Fan
Posts: 734
Joined: Feb 2009
Reputation: 15
Post: #30
Thx for the solution. I will fix it next week. I am going business vocation.
find quote
Post Reply