Kodi Community Forum

Full Version: Display Codec in List View
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I've been adding more HEVC videos to my library and it would be great to see the codec each video like in Confluence or in the play info in estuary.

Image

What do i need to update in the includes.xml to get this?

Thanks
Double-check the EstuaryMOD skin, v1 had the codec info. I'm not sure about v2 though.
It's there in estuaryMOD v2 but v2 is for Kodi 18 only

Image
For Kodi 17 you need to find <include name="MediaFlags"> in Includes.xml.

Then add this as the last include:
Code:
            <include content="MediaFlag">
                <param name="texture" value="$INFO[ListItem.VideoCodec,flags/videocodec/,.png]" />
                <param name="visible" value="!String.IsEmpty(ListItem.VideoCodec)" />
            </include>