Kodi Community Forum
Artwork Downloader - 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: Artwork Downloader (/showthread.php?tid=114633)



RE: Artwork Downloader - mikebzh44 - 2013-10-04

All artwork, including discart, are stored locally in xbmc cache until you export your library in separated files. Then, discard will be exported beside your movie and named [moviename]-discart.png.


RE: Artwork Downloader - sfnetwork - 2013-10-18

Question (sorry in advance if it was already covered)

If all my media already have the local files (disc.png, logo.png, etc...) but I just need the addon to link it to database (Skins can only use them this way), is there a way to bypass Internet fetching, using only existing local files?
I ran it with "local" option enabled but from the time it's taking, I feel like it's redownloading them or something...


RE: Artwork Downloader - Vaikin - 2013-10-18

As long as you have proper folder structure and the files are properly named, the "use local files" option should work just fine. I believe it still tries to find artwork online for entries that do not have local artwork.


RE: Artwork Downloader - sfnetwork - 2013-10-18

(2013-10-18, 18:57)Vaikin Wrote: As long as you have proper folder structure and the files are properly named, the "use local files" option should work just fine. I believe it still tries to find artwork online for entries that do not have local artwork.

I must be doing something wring in that case because it "downloading" them anyways (only enabled the disc/logo/clearart)...
Here is an example of my structure:
Image

***Or maybe it not really downloading and it just shows "downloading" and takes longer because I'm on centralized SQL database...


RE: Artwork Downloader - Martijn - 2013-10-18

mysql sucks


RE: Artwork Downloader - sfnetwork - 2013-10-18

(2013-10-18, 19:09)Martijn Wrote: mysql sucks

Do you have any other suggestion to centralized library? I'm open minded..


RE: Artwork Downloader - sfnetwork - 2013-10-18

(2013-10-18, 19:05)sfnetwork Wrote:
(2013-10-18, 18:57)Vaikin Wrote: As long as you have proper folder structure and the files are properly named, the "use local files" option should work just fine. I believe it still tries to find artwork online for entries that do not have local artwork.

***Or maybe it not really downloading and it just shows "downloading" and takes longer because I'm on centralized SQL database...

Yeah, after more tests I confirmed that it worked locally, it was the SQL part that made it long....


RE: Artwork Downloader - paradix - 2013-10-24

I have noticed, that when downloading for instance a season poster for a given TV Show, Artwork Downloader saves the jpg in the TV Show root directory.
It also adds an artwork to the TV Show with the art_type == 'seasonposter'.

And here are my questions:
  • Is this intentionally made like this?
  • What's the sense in having an artwork for example for Season 2 in the TV Show under this art_type?
  • Maybe there would be a way to make Artwork Downloader add this artwork under the art_type poster for the given season of the TV Show?



RE: Artwork Downloader - providers - 2013-10-27

When scanning all my movies, Artwork Downloader does not download disc art for all my movies.
If I then later manual start Artwork Downloader for only this movie, then its able to find disc art

What could be wrong?

I have turned disc art on in konfiguration.


RE: Artwork Downloader - nivong - 2013-10-28

Have a problem that the artwork isn't begin saved localy anymore since the latest update.

More people have the same problem:
http://forum.xbmc.org/showthread.php?tid=172574

EDIT:
using the latest GIT version, it is working again, thanks


RE: Artwork Downloader - andzinsan - 2013-10-29

Hi, how can I integrate AD addon to the confluence skin?? And how to set it to automaticaly download all finded images to the PC??


RE: Artwork Downloader - BadMojo - 2013-10-30

Hi,
Is it possible to choose to primarily download Movie/TV Show posters from FanArt.tv and if none exist then revert to downloading them from themoviedb/tvdb?
I'd like to start utilising the new HD posters introduced on FanArt.tv Big Grin

Thanks in advance.


RE: Artwork Downloader - andzinsan - 2013-10-30

I integrate Artwork downloader to the confluence skin in DialogVideoInfo.xml with code:
Code:
<control type="button" id="28">
             <description>Get Artwork</description>
             <label>Artwork</label>
             <include>ButtonInfoDialogsCommonValues</include>
             <onclick condition="Container.Content(tvshows)">XBMC.RunScript(script.artwork.downloader, mode=gui, mediatype=tvshow, dbid=$INFO[ListItem.DBID])</onclick>
             <onclick condition="Container.Content(movies)">XBMC.RunScript(script.artwork.downloader, mode=gui, mediatype=movie, dbid=$INFO[ListItem.DBID])</onclick>
             <onclick condition="Container.Content(musicvideos)">XBMC.RunScript(script.artwork.downloader, mode=gui, mediatype=musicvideo, dbid=$INFO[ListItem.DBID])</onclick>
             <visible>[Container.Content(tvshows)|Container.Content(movies)|Container.Content(musicvideos)]+system.hasaddon(script.artwork.downloader)</visible>
          </control>
but when I click on the button and then select type of artwork, list with images is under previously window, it is like a background, see screen.
Image
There you can see that window with select image is under window DialogVideoInfo.
Image


RE: Artwork Downloader - ronie - 2013-10-30

make this change to DialogSelect.xml:
Quote:<window type="dialog">
<zorder>1</zorder>
<defaultcontrol always="true">3</defaultcontrol>



RE: Artwork Downloader - andzinsan - 2013-10-30

THX, it works.