Kodi Community Forum
Confluence Modified - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Skins Support (https://forum.kodi.tv/forumdisplay.php?fid=67)
+---- Forum: Confluence (https://forum.kodi.tv/forumdisplay.php?fid=125)
+---- Thread: Confluence Modified (/showthread.php?tid=145080)



RE: Confluence Modified - Milhouse - 2013-04-01

@Martihn: Not wishing to argue, but if I go to a movie and click "Download Art" it starts to download everything and not just the current movie (bug, perhaps?) plus it writes whatever it finds to my filesystem using unusable filenames (not including the movie it relates to - I know this is by design, but still...) despite the "Download" option not being enabled in settings (bug, perhaps?). It didn't even use the local clearart.png/logo.png files I have in the root of each TV show folder, it downloaded it's own versions from the internet. Just my experience of course, I'd like your addon to have been a keeper but unless it can support movie name prefixes, stop writing to my file system when instructed not to, and is better able to efficiently use local files when they are available it's not worth the hassle.


RE: Confluence Modified - Martijn - 2013-04-01

(2013-04-01, 14:16)MilhouseVH Wrote: @Martihn: Not wishing to argue, but if I go to a movie and click "Download Art" it starts to download everything and not just the current movie (bug, perhaps?)
That's what I call a bug in the skin for not properly passing the correct arguments to ONLY download for that particular movie Smile
Not my fault if not integrated properly.

Quote:plus it writes whatever it finds to my filesystem using unusable filenames (not including the movie it relates to - I know this is by design, but still...) despite the "Download" option not being enabled in settings (bug, perhaps?). It didn't even use the local clearart.png/logo.png files I have in the root of each TV show folder, it downloaded it's own versions from the internet. Just my experience of course, I'd like your addon to have been a keeper but unless it can support movie name prefixes, stop writing to my file system when instructed not to, and is better able to efficiently use local files when they are available it's not worth the hassle.
What you call unusable filenames "cleart.png" has been the standard since two years.
What "download" option? Screenshot perhaps.
I can include an option to include prefixing movie names.
Efficiently use of local files has been there now for several months. It will always prefer local artwork if you have it like it the common filename convention.
https://github.com/XBMC-Addons/script.artwork.downloader/commit/aa8ebda013d9ce655f3bfe5f0fd27463ff1da831

to keep this thread on topic better continue this in the AD thread if you have any questions/suggestions Smile


RE: Confluence Modified - Milhouse - 2013-04-01

(2013-04-01, 14:24)Martijn Wrote: That's what I call a bug in the skin for not properly passing the correct arguments to ONLY download for that particular movie Smile
Not my fault if not integrated properly.

Ha, well it was Confluence Modified... Smile

(2013-04-01, 14:24)Martijn Wrote: to keep this thread on topic better continue this in the AD thread if you have any questions/suggestions Smile

Agreed (sorry toiva).


Confluence Modified - User 34959 - 2013-04-01

If you launch AD from videoinfo you only download for the selected movie, if you run the batch download from skin settings it'll download for every media type.

It should not be possible to bulk download via videoinfo.


RE: Confluence Modified - Milhouse - 2013-04-01

(2013-04-01, 14:59)toiva Wrote: If you launch AD from videoinfo you only download for the selected movie, if you run the batch download from skin settings it'll download for every media type.

I am (was) running it from videoinfo (Info panel -> Download Art button) for a specific movie, and I would have to abandon the run as it was processing unrelated movies, even writing their clearart/logos to the file system when this wasn't a selected option.

(2013-04-01, 14:59)toiva Wrote: Since the download button is under skin settings what did you think it would download?

When I use that option, I expect it to check all existing movies/tvshows/whatever (and download new items). I don't have a problem with that, just the Info panel button.


RE: Confluence Modified - Martijn - 2013-04-01

@toiva
How do you run it from infodialog?


RE: Confluence Modified - User 34959 - 2013-04-01

<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>


RE: Confluence Modified - Martijn - 2013-04-01

that seems the correct way indeed.
@toiva
it only triggers one download for you?
could be that if somehow ListItem.DBID is empty it then switches to full download.
Debug Log might tell whats going on


RE: Confluence Modified - User 34959 - 2013-04-01

I haven't touched that part of the code since the beginning and i haven't had any issues with the gui mode. All the artwork types update correctly.

Milhouse obviously knows that cache part much better than me so i don't know what else (if any) extra files it downloads.


RE: Confluence Modified - Milhouse - 2013-04-01

I'd suggest parking it for now guys, it's based on my memory from a few weeks ago so I really need to get back to AD and test again/re-confirm behaviour, but I can only do that once this potential firmware issue is resolved - I don't want to update my current cache in case it renders that particular issue unreproducible.


RE: Confluence Modified - User 34959 - 2013-04-01

Well i did take a quick look and it is running awfully lot of update queries into the database although i only downloaded 1 logo via gui mode for Bourne Legacy. Looks to me like it's updating poster, fanart and actor thumbs along the logo to name a few.

http://pastebin.com/8YNbdvKk

Don't mind the unmatched parenthesis, the one time i forget to run phil65's tool it actually would have found something Tongue


RE: Confluence Modified - Martijn - 2013-04-01

only one that has to do with the script
Quote:17:12:04 T:4571394048 DEBUG: JSONRPC: Incoming request: {"jsonrpc": "2.0", "method": "VideoLibrary.SetMovieDetails", "params": { "movieid": 131, "art": { "clearlogo": "http://assets.fanart.tv/fanart/movies/49040/hdmovielogo/the-bourne-legacy-505a698e6b26a.png"}}, "id": 1 }

and that one seems correct so i see no issues Smile
the others i have no idea


RE: Confluence Modified - User 34959 - 2013-04-01

Right beneath is this, so this is nothing to worry about?

Quote:17:12:04 T:4571394048 DEBUG: JSONRPC: Calling videolibrary.setmoviedetails
17:12:04 T:4571394048 DEBUG: JSONRPC: Type mismatch in type



Odp: Confluence Modified - Marx1 - 2013-04-01

There should be option to abandon full artwork downloading. I have run it once, and wouldn't been able to interrupt it.


RE: Confluence Modified - ctawn - 2013-04-01

At the risk of being a big pest here, can you please address the issue of whether or not you can adjust the timing of the background switching when using multiple backgrounds? It's far too fast, so if it's not possible now, can you please add a setting?