[RELEASE] Artwork Downloader - Skin support

  Thread Rating:
  • 3 Votes - 4.67 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Post Reply
fmronan Offline
Fan
Posts: 584
Joined: Dec 2010
Reputation: 4
Post: #81
perhaps it's possible to add something like that?

Code:
Add prefix tt on request ( true | false )
find quote
Martijn Offline
Team-XBMC
Posts: 7,704
Joined: Jul 2011
Reputation: 114
Location: Dawn of time
Post: #82
fmronan Wrote:perhaps it's possible to add something like that?

Code:
Add prefix tt on request ( true | false )

I am sorry but we discussed this internally with the fellow coders and we decided that we are not going to solve scraper problems in our script.
It can be done however if cine-passion doesn't store the correct IMDB Id it's not our problem. Every other scraper does it correctly.
They should fix it in the scraper and then maybe we can think of an in between solution for the ones already scraped into the xbmc library.

Always read the XBMC online-manual, FAQ and search the forums before posting.
Do NOT e-mail Team-XBMC members asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting, make sure you read this first


For your mediacenter artwork go to
[Image: fanarttv.png]
(This post was last modified: 2011-12-13 12:22 by Martijn.)
find quote
fmronan Offline
Fan
Posts: 584
Joined: Dec 2010
Reputation: 4
Post: #83
a little patch for your script
Team Passion

"tt%07d" % int( id.strip( "t" ) )

test
Code:
id = "82945"
print id
print "tt%07d" % int( id.strip( "t" ) )
print

id = "tt1318514"
print id
print "tt%07d" % int( id.strip( "t" ) )
find quote
Martijn Offline
Team-XBMC
Posts: 7,704
Joined: Jul 2011
Reputation: 114
Location: Dawn of time
Post: #84
fmronan Wrote:a little patch for your script
Team Passion

"tt%07d" % int( id.strip( "t" ) )

test
Code:
id = "82945"
print id
print "tt%07d" % int( id.strip( "t" ) )
print

id = "tt1318514"
print id
print "tt%07d" % int( id.strip( "t" ) )

Yes i know how to fix but that's not the point. They can apply that patch as easily to their scraper.
Like i explained it should be fixed in the scraper and not in our script. So if they make sure from now on they are storing the ID like it should we can apply the patch below.
This will be our patch:
cine-passion fix

Always read the XBMC online-manual, FAQ and search the forums before posting.
Do NOT e-mail Team-XBMC members asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting, make sure you read this first


For your mediacenter artwork go to
[Image: fanarttv.png]
(This post was last modified: 2011-12-13 15:12 by Martijn.)
find quote
fmronan Offline
Fan
Posts: 584
Joined: Dec 2010
Reputation: 4
Post: #85
Thank you kindly add the patch in the script, the team passion will correct Id , but we can not force users to recreate their base, so we need the script with the patch.
find quote
Martijn Offline
Team-XBMC
Posts: 7,704
Joined: Jul 2011
Reputation: 114
Location: Dawn of time
Post: #86
fmronan Wrote:Thank you kindly add the patch in the script, the team passion will correct Id , but we can not force users to recreate their base, so we need the script with the patch.

That is understandable that users won't recreate their database and we won't expect them to Smile

I would like to ask you if you could test the patch to make sure it works?
I'll send you a PM will the patched version.

Always read the XBMC online-manual, FAQ and search the forums before posting.
Do NOT e-mail Team-XBMC members asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting, make sure you read this first


For your mediacenter artwork go to
[Image: fanarttv.png]
find quote
fmronan Offline
Fan
Posts: 584
Joined: Dec 2010
Reputation: 4
Post: #87
no problem for make every test, thanks
find quote
Martijn Offline
Team-XBMC
Posts: 7,704
Joined: Jul 2011
Reputation: 114
Location: Dawn of time
Post: #88
Small bugfix release:
script.artwork.downloader-Eden(1.0.3)-RC1.zip

1.0.3 RC1
- Fixed: Error below limit check
- Added: Try conversion of non standard IMDB Id

Always read the XBMC online-manual, FAQ and search the forums before posting.
Do NOT e-mail Team-XBMC members asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting, make sure you read this first


For your mediacenter artwork go to
[Image: fanarttv.png]
find quote
ekim232 Offline
Posting Freak
Posts: 1,204
Joined: Nov 2008
Reputation: 5
Location: Chicago, IL
Post: #89
I am on 1.0.2 and I am trying to add buttons to my videoinfo screen for extrafanart and extrathumbs. They are two seperate buttons and extrafanart works as expected, but I cannot get extrathumbs to download any. My button codes are below. If I run the script as an addon it, all extrathumbs will download.

<onclick>RunScript(script.artwork.downloader,mode=custom,mediatype=movie,medianame=$IN​FO[ListItem.Title],extrafanart)</onclick>

<onclick>RunScript(script.artwork.downloader,mode=custom,mediatype=movie,medianame=$IN​FO[ListItem.Title],extrathumbs)</onclick>

Any one got any ideas will the extrathumbs will not download with this?
(This post was last modified: 2011-12-16 06:11 by ekim232.)
find quote
Martijn Offline
Team-XBMC
Posts: 7,704
Joined: Jul 2011
Reputation: 114
Location: Dawn of time
Post: #90
ekim232 Wrote:Any one got any ideas will the extrathumbs will not download with this?

Yes i know Smile

Please try this one:
script.artwork.downloader-Eden(1.0.3)-RC2.zip

Fixes:
- downloading artwork specific for movies

Always read the XBMC online-manual, FAQ and search the forums before posting.
Do NOT e-mail Team-XBMC members asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting, make sure you read this first


For your mediacenter artwork go to
[Image: fanarttv.png]
find quote
Post Reply