How to add various media flags/info to home screen.
#5
(2020-06-13, 16:29)DaVu Wrote: Changing the path for the mediacodecs won't help him as they are still not shown on the home-screen then. Also there's no image for the flags when a program will end. Those have to be added and bunch more work have to be done to show them at the home screen.

 why should i need to repeat what you had all ready posted

f I'm not mistaken those graphics don't even exist in Estuary. So you have to create them and add them here:

so to make it clear 
create folder in Estuary
flags
flags\aspectratio
create image and add them here:
flags\audiochannel
create image and add them here:
flags\audiocodec
create image and add them here:

edit Includes.xml

find <include name="MediaFlags">
and change path to special://skin/flags/
xml:

<include content="MediaFlag">
<param name="texture" value="flags/flag.png" />
</include>
</control>
<include content="MediaFlag">
<param name="texture" value="$INFO[$PARAM[infolabel_prefix]ListItem.AudioChannels,special://skin/flags/audiochannel/,.png]" />
<param name="visible" value="!String.IsEmpty($PARAM[infolabel_prefix]ListItem.AudioChannels)" />
</include>
<include content="MediaFlag">
<param name="texture" value="$INFO[$PARAM[infolabel_prefix]ListItem.AudioCodec,special://skin/flags/audiocodec/,.png]" />
<param name="visible" value="!String.IsEmpty($PARAM[infolabel_prefix]ListItem.AudioCodec)" />
</include>
<include content="MediaFlag">
<param name="texture" value="$INFO[ListItem.VideoAspect,special://skin/flags/aspectratio/,.png]" />
</include>
<include content="MediaFlag">
<param name="texture" value="$PARAM[resolution_var]" />
<param name="visible" value="!String.IsEmpty($PARAM[infolabel_prefix]ListItem.VideoResolution)" />
</include>
</control>



ImageImage

https://kodi.wiki/view/InfoLabels

ListItem.EndTime
End time of current selected TV programme in a container
Reply


Messages In This Thread
RE: How to add various media flags/info to home screen. - by the_other_guy - 2020-06-17, 03:14
Logout Mark Read Team Forum Stats Members Help
How to add various media flags/info to home screen.0