Kodi Community Forum
Cover instead of fanart? - 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: Cover instead of fanart? (/showthread.php?tid=344809)



Cover instead of fanart? - asselnik - 2019-06-20

Hi,
what must i edit in the ViewsVideoLibrary.xml to see the cover instead of the fanart in the video list?


RE: Cover instead of fanart? - Hitcher - 2019-06-20

The list view already shows the cover.


RE: Cover instead of fanart? - asselnik - 2019-06-20

Yes i know, but i need it in the view "media info".

Sorry i forgot to wrote that.


RE: Cover instead of fanart? - jjd-uk - 2019-06-20

For Movies you need to change https://github.com/xbmc/skin.confluence/blob/master/720p/ViewsVideoLibrary.xml#L1382

from
xml:
<texture background="true" fallback="Fanart_Fallback_Small.jpg">$INFO[ListItem.Art(fanart)]</texture>
to
xml:
<texture background="true" fallback="Fanart_Fallback_Small.jpg">$INFO[ListItem.Art(poster)]</texture>

However that image control is set to scale (which for a cover would zoom in so width of cover fits exactly thus chopping to & bottom off) so in order to display the full cover you also need to change https://github.com/xbmc/skin.confluence/blob/master/720p/ViewsVideoLibrary.xml#L1380

from
xml:
<aspectratio>scale</aspectratio>
to
xml:
<aspectratio>keep</aspectratio>

That would do just movies, for tv shows and ordinary videos you would also need to change

https://github.com/xbmc/skin.confluence/blob/master/720p/ViewsVideoLibrary.xml#L1392

https://github.com/xbmc/skin.confluence/blob/master/720p/ViewsVideoLibrary.xml#L1394


RE: Cover instead of fanart? - asselnik - 2019-06-20

Absolutely Perfect!!! Big Big Thanks!