Replies: 7 comments 2 replies
-
The additional InfoLabels could be added for retrieval via the TOML lists that are now available. An (The caching was all implemented back when all elements got drawn on every update of the display. That doesn't matter too much now, when the static elements just get drawn once for a given track. Every track change causes all static elements to get updated, so there would be a bit of efficiency lost for any art that was identical.) |
Beta Was this translation helpful? Give feedback.
-
When I get the time, I'll look at simplifying |
Beta Was this translation helpful? Give feedback.
-
With the current top of the dev/refactor_artwork branch commit 975f8d5 one can make use of a layout
as an alternative to a top-level "thumb" entry ( There is also an Both should be able to take the InfoLabel to use as the image path via a The top-level "thumb" entry is still perfectly useful, so as not to break existing setup.toml files. |
Beta Was this translation helpful? Give feedback.
-
Ok, the commit after that one. I had one bug in |
Beta Was this translation helpful? Give feedback.
-
The /dev/refactor_artwork branch has been merged back to master. If desired, one can now modify layouts, dropping any existing top-level |
Beta Was this translation helpful? Give feedback.
-
Use it in my setup for display tvshow and season poster in my tvshow layout: 6f633d8 I also tried to used it on my statis layout du display the weather icon with But instead off displaying the image is display the default audio cover. I think it is because kodi panel cannot retreive the picture |
Beta Was this translation helpful? Give feedback.
-
Note that one can now set
in the setup.toml file to turn-on the debug I don't know much about the initial |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Currently the thumb field in
setup.toml
only retreive the cover viaMusicPlayer.Cover
orVideoPlayer.Cover
infolabels.More artwork is also accessible:
https://kodi.wiki/view/Artwork/Accessing_with_skins_and_JSON-RPC#Access_.22parent.22_artwork
eg tvshow it is possible to get poster for the season or tvshow instead of the episode thumb:
Player.Art(tvshow.clearlogo)", "Player.Art(season.poster)"
Same thing for music, artist fanart instead of album cover
"Player.Art(album.thumb)", "Player.Art(artist.fanart)", "Player.Art(albumartist.clearlogo)"
Would it be possible to specify the infolabel to be retreived in the thumb section? (eg;
Player.Art(artist.fanart)
instead ofMusicPlayer.Cover
)Ideally one could also display several artworks via several thumb section in the same layout of
setup.toml
(eg artist + album fanart)And also have fail back in case of artwork not available. (eg: if no artist fanart display album cover)
the folowing
setup.toml
would display: big artist fanart + small default cover or only big default cover if not artist fanart is availableBeta Was this translation helpful? Give feedback.
All reactions