Kodi Community Forum

Full Version: Costumize name of media flag
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi there,

please be patient if this has been asked before.

Is there any way to edit the name, that is need for some media flags. For example "bluray" has to be in file or pathname to get a blue br case. Is there a way to change this to what ever I want? In skin "confluence" this can be done by editing the "IncludesCodecFlagging.xml":

https://github.com/xbmc/xbmc/blob/master...agging.xml

If I understand correct, I only have to change:

Code:
<value condition="[substring(ListItem.FilenameAndPath,bluray) | substring(ListItem.FilenameAndPath,bdrip) | substring(ListItem.FilenameAndPath,bd25) | substring(ListItem.FilenameAndPath,bd50)]">bluray</value>

to

Code:
<value condition="[substring(ListItem.FilenameAndPath,movieshd) | substring(ListItem.FilenameAndPath,bdrip) | substring(ListItem.FilenameAndPath,bd25) | substring(ListItem.FilenameAndPath,bd50)]">bluray</value>

if I want "movieshd" in the file and pathname.

Which XML file is responsible for doing this in AeonMQ5?

Thanks for the answer

Greetings
David
Think it's probably IncludesVariables.xml That's where I found the stuff to set my UK ratings flags.
ok..I´ll take a look an report back!

Thanks
Just for reporting back....it´s in there. Under the "Variable Video Codec Collection"-section

Thank for your help!