Kodi Community Forum

Full Version: Support for Season Fanart on Embuary (Matrix)
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi all! 

Is there anyway to see the season fanart on background while browsing tv shows?
Season fanart is not scraped by the scrapers as there is no separation of fanart and season fanart at the online sites.

Some skins can display locally saved season fanart. You can see correct naming in the image here... https://kodi.wiki/view/TV-Show_artwork

Whether this skin displays it, I am not sure. But at least start off by getting the setup correct to check whether it does work.

Also highlight a season in your tv show, call up the context menu, select Manage then select Choose Art. You can manually apply artwork this way.
Thanks for the reply! @Karellen

Season fanarts show up in the default skin. While using Embuary (Matrix), they only show in the "Manage/Choose Art" section. But instead of showing the season fanart, it shows the main fanart.
(2021-06-27, 03:11)mvana22 Wrote: [ -> ]But instead of showing the season fanart, it shows the main fanart.
Ok, then that will be a question for the skin author @sualfred
It should work if you add a new line before this one:
https://github.com/sualfred/skin.embuary...s.xml#L610

Code:
        <value condition="Container.Content(seasons) + !String.IsEmpty(ListItem.Art(season.fanart))">$INFO[ListItem.Art(season.fanart)]</value>
Thanks for the response @sualfred 

I've added the line and code looks like this, not sure if I added the code right-
(Location- \AppData\Roaming\Kodi\addons\skin.embuary-matrix\xml)

Code:
<!-- based on listitems -->
        <value condition="Window.IsVisible(script-embuary-video.xml) + !String.IsEmpty(Container(10051).ListItem.Art(fanart))">$INFO[Container(10051).ListItem.Art(fanart)]</value>
        <value condition="[Window.IsVisible(DialogVideoInfo.xml) | Window.IsVisible(script-embuary-person.xml)] + !String.IsEmpty(Container(2003).ListItem.Icon) + !Container.OnNext + !Container.OnPrevious">$INFO[Container(2003).ListItem.Icon]</value>
        <value condition="Container.Content(seasons) + !String.IsEmpty(ListItem.Art(season.fanart))">$INFO[ListItem.Art(season.fanart)]</value>
        <value condition="[Window.IsMedia | Window.IsVisible(DialogVideoInfo.xml) | Window.IsVisible(DialogMusicInfo.xml) | Window.IsVisible(fullscreeninfo) | Window.IsVisible(pvrguideinfo)] + !String.IsEmpty(ListItem.Art(tvshow.fanart))">$INFO[ListItem.Art(tvshow.fanart)]</value>
        <value condition="[Window.IsMedia | Window.IsVisible(DialogVideoInfo.xml) | Window.IsVisible(DialogMusicInfo.xml) | Window.IsVisible(fullscreeninfo) | Window.IsVisible(pvrguideinfo)] + !String.IsEmpty(ListItem.Art(fanart))">$INFO[ListItem.Art(fanart)]</value>

Didn't notice any changes on the skin, tried it couple of times, refreshed, deleted cache, thumbnails, etc.