• 1
  • 4
  • 5
  • 6(current)
  • 7
  • 8
  • 31
[RELEASE] Artwork Downloader - Skin support
#76
Martijn Wrote:@Jeroen (and others)

Could you try this one?
script.artwork.downloader-Eden(1.0.2)-RC5.zip

Do only notify on finished custom/gui mode

Excellent, works like a charm Smile Cheers!
Reply
#77
Like many french users I use http://passion-xbmc.org/scraper/index2.php?Page=Home

http://passion-xbmc.org/addons/?Page=Vie...n-xbmc.org
Reply
#78
They seem to cut off tt from the ID which is necessary for TMDB.

@Martijn
I would add a simple check if the ID starts with tt and add it if not. If it's not working then, user has to switch the scraper.
Image
Reply
#79
`Black Wrote:They seem to cut off tt from the ID which is necessary for TMDB.

@Martijn
I would add a simple check if the ID starts with tt and add it if not. If it's not working then, user has to switch the scraper.

I'm not happy that we have to fix scraper flaws so i would urge them just do like all other scraper and keep the real IMDB Id.

Will see what can be done but I stand by my point it has to be fixed in the scraper anyway!

Edit:
They don't even have a fixed lenght. So it has to be several lines of code to get the correct Id again.
Can't imagine we are the only add-on that they have problems with. The rating update script won't work either because it also needs the full Id.

Not only TMDB will require a tt.... Id also http://fanart.tv will need it on the new site.
Read/follow the forum rules.
For troubleshooting and bug reporting, read this first
Interested in seeing some YouTube videos about Kodi? Go here and subscribe
Reply
#80
1.0.2
- Added: Log summary on failed/missing items
- Added: Support the providers message on finished
- Added: Custom mode pops-up a image selection when run on single tvshow/movie
- Added: First retrieve image list(s) and then do batch download
- Changed: Run add-on on specified time of day instead on interval
- Fixed: Problems caused with UTF-8 characters in titles
- Fixed: Some images didn't show in GUI because of spaces in image URL
- Fixed: Show correct download count in log
- Fixed: Don't show dialog.OK when finished run in silent mode
Read/follow the forum rules.
For troubleshooting and bug reporting, read this first
Interested in seeing some YouTube videos about Kodi? Go here and subscribe
Reply
#81
perhaps it's possible to add something like that?

Code:
Add prefix tt on request ( true | false )
Reply
#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.
Read/follow the forum rules.
For troubleshooting and bug reporting, read this first
Interested in seeing some YouTube videos about Kodi? Go here and subscribe
Reply
#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" ) )
Reply
#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
Read/follow the forum rules.
For troubleshooting and bug reporting, read this first
Interested in seeing some YouTube videos about Kodi? Go here and subscribe
Reply
#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.
Reply
#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.
Read/follow the forum rules.
For troubleshooting and bug reporting, read this first
Interested in seeing some YouTube videos about Kodi? Go here and subscribe
Reply
#87
no problem for make every test, thanks
Reply
#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
Read/follow the forum rules.
For troubleshooting and bug reporting, read this first
Interested in seeing some YouTube videos about Kodi? Go here and subscribe
Reply
#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=$INFO[ListItem.Title],extrafanart)</onclick>

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

Any one got any ideas will the extrathumbs will not download with this?
Reply
#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
Read/follow the forum rules.
For troubleshooting and bug reporting, read this first
Interested in seeing some YouTube videos about Kodi? Go here and subscribe
Reply
  • 1
  • 4
  • 5
  • 6(current)
  • 7
  • 8
  • 31

Logout Mark Read Team Forum Stats Members Help
[RELEASE] Artwork Downloader - Skin support3