Mod Dialog Info Screen New MOD
#46
(2016-06-14, 17:06)DolGuldur Wrote:
(2016-06-14, 15:16)movie78 Wrote: Let me know if this files is helpfull

Variables.xml

Quote:<variable name="MediaFlagsColorVar">
<value condition="Skin.HasSetting(enable_mediaflagscolor)">button_focus</value>
<value>FFFFFFFF</value>
</variable>
<variable name="ListItemAudioCodecPlusFilenameFlags">
<value condition="String.Contains(ListItem.Filenameandpath,atmos)">atmos</value>
<value condition="String.Contains(ListItem.Filenameandpath,Atmos)">atmos</value>
<value condition="String.Contains(ListItem.Filenameandpath,ATMOS)">atmos</value>
<value condition="String.Contains(ListItem.Filenameandpath,dts-x)">dts-x</value>
<value condition="String.Contains(ListItem.Filenameandpath,DTS-X)">dts-x</value>
<value condition="String.Contains(ListItem.Filenameandpath,dtsx)">dts-x</value>
<value condition="String.Contains(ListItem.Filenameandpath,DTSX)">dts-x</value>
<value>$INFO[ListItem.AudioCodec]</value>
</variable>
<variable name="VideoPlayerAudioCodecPlusFilenameFlags">
<value condition="String.Contains(Player.Filenameandpath,atmos)">atmos</value>
<value condition="String.Contains(Player.Filenameandpath,Atmos)">atmos</value>
<value condition="String.Contains(Player.Filenameandpath,ATMOS)">atmos</value>
<value condition="String.Contains(Player.Filenameandpath,dts-x)">dts-x</value>
<value condition="String.Contains(Player.Filenameandpath,DTS-X)">dts-x</value>
<value condition="String.Contains(Player.Filenameandpath,dtsx)">dts-x</value>
<value condition="String.Contains(Player.Filenameandpath,DTSX)">dts-x</value>
<value>$INFO[VideoPlayer.AudioCodec]</value>
</variable>
Yes this just reads those tags like [atmos, ATMOS, dts-x, DTSX] etc from the filename,, these are just variations that kodi picks them up from the file name


Can it be added?
MY CURRENT MEDIA PLAYER | MY HOME THEATER
MINIX NEO U22-XJ COREELEC v19 MATRIX | EGREAT A10 | NVIDIA SHIELD | LG 75 NANO90 DV/HDR+ | Sony 43 Android TV HDR
XBOX SERIES X  | PS4 PRO 4K | JBL 9.1 System 5.1.4 DTS:X/ATMOS 
Reply
#47
(2016-06-14, 17:22)movie78 Wrote: Can it be added?

Yes add them to IncludesVariables.xml after line 2417
Reply
#48
(2016-06-14, 17:30)DolGuldur Wrote:
(2016-06-14, 17:22)movie78 Wrote: Can it be added?

Yes add them to IncludesVariables.xml after line 2417

Like this?

Quote:<variable name="value_videocodec7">
<value condition="[SubString(ListItem(7).Filenameandpath,bluray) | SubString(ListItem(7).Filenameandpath,blu-ray) | SubString(ListItem(7).Filenameandpath,bdrip)] + ![SubString(ListItem(7).Filenameandpath,.3dbd.) | SubString(ListItem(7).Filenameandpath,.3d.)]">$VAR[value_codecbluray7]</value>
<value condition="SubString(ListItem(7).Filenameandpath,web)">$VAR[value_codecwebtv7]</value>
<value condition="SubString(ListItem(7).Filenameandpath,hdtv)">$VAR[value_codechdtv7]</value>
<value condition="SubString(ListItem(7).Filenameandpath,dvd) | SubString(ListItem(7).Filenameandpath,.ifo,Right) | SubString(ListItem(7).Filenameandpath,.iso,Right) + ![SubString(ListItem(7).Filenameandpath,bluray) | SubString(ListItem(7).Filenameandpath,.3dbd.) | SubString(ListItem(7).Filenameandpath,.3d.)]">$VAR[value_codecdvd]</value>
<value condition="SubString(ListItem(7).Filenameandpath,.3dbd.) | SubString(ListItem(7).Filenameandpath,.3d.)">$VAR[value_codec3dbd7]</value>
<value condition="SubString(ListItem(7).Path,videodb://movies/sets,left)">$VAR[value_codecset7]</value>
<value condition="SubString(ListItem(7).Filenameandpath,4k)">$VAR[value_codec4k7]</value>
<value condition="![SubString(ListItem(7).Filenameandpath,bluray) | SubString(ListItem(7).Filenameandpath,blu-ray) | SubString(ListItem(7).Filenameandpath,bdrip) | SubString(ListItem(7).Filenameandpath,hdtv) | SubString(ListItem(7).Filenameandpath,web) | SubString(ListItem(7).Filenameandpath,dvd) | SubString(ListItem(7).Filenameandpath,.3dbd.) | SubString(ListItem(7).Filenameandpath,.3d.) | SubString(ListItem(7).Filenameandpath,.iso,Right) | SubString(ListItem(7).Filenameandpath,.ifo,Right) | SubString(ListItem(7).Filenameandpath,web) | SubString(ListItem(7).Path,videodb://movies/sets,left) | SubString(ListItem(7).Filenameandpath,4k)]">$VAR[value_codecdefault7]</value>
</variable>
<variable name="MediaFlagsColorVar">
<value condition="Skin.HasSetting(enable_mediaflagscolor)">button_focus</value>
<value>FFFFFFFF</value>
</variable>
<variable name="ListItemAudioCodecPlusFilenameFlags">
<value condition="String.Contains(ListItem.Filenameandpath,atmos)">atmos</value>
<value condition="String.Contains(ListItem.Filenameandpath,Atmos)">atmos</value>
<value condition="String.Contains(ListItem.Filenameandpath,ATMOS)">atmos</value>
<value condition="String.Contains(ListItem.Filenameandpath,dts-x)">dts-x</value>
<value condition="String.Contains(ListItem.Filenameandpath,DTS-X)">dts-x</value>
<value condition="String.Contains(ListItem.Filenameandpath,dtsx)">dts-x</value>
<value condition="String.Contains(ListItem.Filenameandpath,DTSX)">dts-x</value>
<value>$INFO[ListItem.AudioCodec]</value>
</variable>
<variable name="VideoPlayerAudioCodecPlusFilenameFlags">
<value condition="String.Contains(Player.Filenameandpath,atmos)">atmos</value>
<value condition="String.Contains(Player.Filenameandpath,Atmos)">atmos</value>
<value condition="String.Contains(Player.Filenameandpath,ATMOS)">atmos</value>
<value condition="String.Contains(Player.Filenameandpath,dts-x)">dts-x</value>
<value condition="String.Contains(Player.Filenameandpath,DTS-X)">dts-x</value>
<value condition="String.Contains(Player.Filenameandpath,dtsx)">dts-x</value>
<value condition="String.Contains(Player.Filenameandpath,DTSX)">dts-x</value>
<value>$INFO[VideoPlayer.AudioCodec]</value>
</variable>
MY CURRENT MEDIA PLAYER | MY HOME THEATER
MINIX NEO U22-XJ COREELEC v19 MATRIX | EGREAT A10 | NVIDIA SHIELD | LG 75 NANO90 DV/HDR+ | Sony 43 Android TV HDR
XBOX SERIES X  | PS4 PRO 4K | JBL 9.1 System 5.1.4 DTS:X/ATMOS 
Reply
#49
(2016-06-14, 17:37)movie78 Wrote: Like this?

Quote:<variable name="value_videocodec7">
<value condition="[SubString(ListItem(7).Filenameandpath,bluray) | SubString(ListItem(7).Filenameandpath,blu-ray) | SubString(ListItem(7).Filenameandpath,bdrip)] + ![SubString(ListItem(7).Filenameandpath,.3dbd.) | SubString(ListItem(7).Filenameandpath,.3d.)]">$VAR[value_codecbluray7]</value>
<value condition="SubString(ListItem(7).Filenameandpath,web)">$VAR[value_codecwebtv7]</value>
<value condition="SubString(ListItem(7).Filenameandpath,hdtv)">$VAR[value_codechdtv7]</value>
<value condition="SubString(ListItem(7).Filenameandpath,dvd) | SubString(ListItem(7).Filenameandpath,.ifo,Right) | SubString(ListItem(7).Filenameandpath,.iso,Right) + ![SubString(ListItem(7).Filenameandpath,bluray) | SubString(ListItem(7).Filenameandpath,.3dbd.) | SubString(ListItem(7).Filenameandpath,.3d.)]">$VAR[value_codecdvd]</value>
<value condition="SubString(ListItem(7).Filenameandpath,.3dbd.) | SubString(ListItem(7).Filenameandpath,.3d.)">$VAR[value_codec3dbd7]</value>
<value condition="SubString(ListItem(7).Path,videodb://movies/sets,left)">$VAR[value_codecset7]</value>
<value condition="SubString(ListItem(7).Filenameandpath,4k)">$VAR[value_codec4k7]</value>
<value condition="![SubString(ListItem(7).Filenameandpath,bluray) | SubString(ListItem(7).Filenameandpath,blu-ray) | SubString(ListItem(7).Filenameandpath,bdrip) | SubString(ListItem(7).Filenameandpath,hdtv) | SubString(ListItem(7).Filenameandpath,web) | SubString(ListItem(7).Filenameandpath,dvd) | SubString(ListItem(7).Filenameandpath,.3dbd.) | SubString(ListItem(7).Filenameandpath,.3d.) | SubString(ListItem(7).Filenameandpath,.iso,Right) | SubString(ListItem(7).Filenameandpath,.ifo,Right) | SubString(ListItem(7).Filenameandpath,web) | SubString(ListItem(7).Path,videodb://movies/sets,left) | SubString(ListItem(7).Filenameandpath,4k)]">$VAR[value_codecdefault7]</value>
</variable>
<variable name="MediaFlagsColorVar">
<value condition="Skin.HasSetting(enable_mediaflagscolor)">button_focus</value>
<value>FFFFFFFF</value>
</variable>
<variable name="ListItemAudioCodecPlusFilenameFlags">
<value condition="String.Contains(ListItem.Filenameandpath,atmos)">atmos</value>
<value condition="String.Contains(ListItem.Filenameandpath,Atmos)">atmos</value>
<value condition="String.Contains(ListItem.Filenameandpath,ATMOS)">atmos</value>
<value condition="String.Contains(ListItem.Filenameandpath,dts-x)">dts-x</value>
<value condition="String.Contains(ListItem.Filenameandpath,DTS-X)">dts-x</value>
<value condition="String.Contains(ListItem.Filenameandpath,dtsx)">dts-x</value>
<value condition="String.Contains(ListItem.Filenameandpath,DTSX)">dts-x</value>
<value>$INFO[ListItem.AudioCodec]</value>
</variable>
<variable name="VideoPlayerAudioCodecPlusFilenameFlags">
<value condition="String.Contains(Player.Filenameandpath,atmos)">atmos</value>
<value condition="String.Contains(Player.Filenameandpath,Atmos)">atmos</value>
<value condition="String.Contains(Player.Filenameandpath,ATMOS)">atmos</value>
<value condition="String.Contains(Player.Filenameandpath,dts-x)">dts-x</value>
<value condition="String.Contains(Player.Filenameandpath,DTS-X)">dts-x</value>
<value condition="String.Contains(Player.Filenameandpath,dtsx)">dts-x</value>
<value condition="String.Contains(Player.Filenameandpath,DTSX)">dts-x</value>
<value>$INFO[VideoPlayer.AudioCodec]</value>
</variable>

yes but remember your movies filename should contain one of those tags
Reply
#50
Did not work and the filenames contain those tags
MY CURRENT MEDIA PLAYER | MY HOME THEATER
MINIX NEO U22-XJ COREELEC v19 MATRIX | EGREAT A10 | NVIDIA SHIELD | LG 75 NANO90 DV/HDR+ | Sony 43 Android TV HDR
XBOX SERIES X  | PS4 PRO 4K | JBL 9.1 System 5.1.4 DTS:X/ATMOS 
Reply
#51
(2016-06-14, 18:07)movie78 Wrote: Did not work and the filenames contain those tags

you should clean/ update library
Reply
#52
(2016-06-14, 19:04)DolGuldur Wrote:
(2016-06-14, 18:07)movie78 Wrote: Did not work and the filenames contain those tags

you should clean/ update library

Clean library but still not working...Sad
MY CURRENT MEDIA PLAYER | MY HOME THEATER
MINIX NEO U22-XJ COREELEC v19 MATRIX | EGREAT A10 | NVIDIA SHIELD | LG 75 NANO90 DV/HDR+ | Sony 43 Android TV HDR
XBOX SERIES X  | PS4 PRO 4K | JBL 9.1 System 5.1.4 DTS:X/ATMOS 
Reply
#53
(2016-06-14, 19:28)movie78 Wrote:
(2016-06-14, 19:04)DolGuldur Wrote:
(2016-06-14, 18:07)movie78 Wrote: Did not work and the filenames contain those tags

you should clean/ update library

Clean library but still not working...Sad

ok, I'm going to give it a try when I make some time in a couple of days
Reply
#54
(2016-06-14, 19:46)DolGuldur Wrote:
(2016-06-14, 19:28)movie78 Wrote:
(2016-06-14, 19:04)DolGuldur Wrote: you should clean/ update library

Clean library but still not working...Sad

ok, I'm going to give it a try when I make some time in a couple of days

Sorry for polluting your thread with these question...

Thanks for all your help...
MY CURRENT MEDIA PLAYER | MY HOME THEATER
MINIX NEO U22-XJ COREELEC v19 MATRIX | EGREAT A10 | NVIDIA SHIELD | LG 75 NANO90 DV/HDR+ | Sony 43 Android TV HDR
XBOX SERIES X  | PS4 PRO 4K | JBL 9.1 System 5.1.4 DTS:X/ATMOS 
Reply
#55
(2016-06-14, 20:00)movie78 Wrote:
(2016-06-14, 19:46)DolGuldur Wrote:
(2016-06-14, 19:28)movie78 Wrote: Clean library but still not working...Sad

ok, I'm going to give it a try when I make some time in a couple of days

Sorry for polluting your thread with these question...

Thanks for all your help...
you're welcome
I updated the first post with offline rating images
Reply
#56
Where does the flags goes?

Do I have to use Texture Tool to add it to the Textures.xbt?
MY CURRENT MEDIA PLAYER | MY HOME THEATER
MINIX NEO U22-XJ COREELEC v19 MATRIX | EGREAT A10 | NVIDIA SHIELD | LG 75 NANO90 DV/HDR+ | Sony 43 Android TV HDR
XBOX SERIES X  | PS4 PRO 4K | JBL 9.1 System 5.1.4 DTS:X/ATMOS 
Reply
#57
(2016-06-14, 20:39)movie78 Wrote: Where does the flags goes?

Do I have to use Texture Tool to add it to the Textures.xbt?

after you extract it you end up with a flags folder put it inside media folder and thats it, you can also add it to your Textures.xbt file using texture tool
Reply
#58
Works!!!

Can you increase the size of Clearlogo?

Image

Thanks!
MY CURRENT MEDIA PLAYER | MY HOME THEATER
MINIX NEO U22-XJ COREELEC v19 MATRIX | EGREAT A10 | NVIDIA SHIELD | LG 75 NANO90 DV/HDR+ | Sony 43 Android TV HDR
XBOX SERIES X  | PS4 PRO 4K | JBL 9.1 System 5.1.4 DTS:X/ATMOS 
Reply
#59
(2016-06-13, 12:25)DolGuldur Wrote:
(2016-06-13, 03:59)MANswers Wrote: The other version by another member has the movie logo instead of the Text title, can that be done with this version. I just like the disk art along with all the other info which the other one doesnt.

which version of aeon mq are you using?
if it is the latest version by Angelinas then use this (enable it in topmenu dropdown)
http://www.mediafire.com/download/oznj9k...eoInfo.xml
Image
Image

Sir, thank you so much for fullfilling this request.
This looks very nice now.

I just have one more question, can you let me know the file, and the code i need to edit, for me to change the way the logo and the cd rolls over when a movie is clicked, i just do not like the way it comes tumbling down, I would rather have it like either in faded in or pobably a crossfade out. Even the logo and cd just being there is ok..
Reply
#60
Quote:I just have one more question, can you let me know the file, and the code i need to edit, for me to change the way the logo and the cd rolls over when a movie is clicked, i just do not like the way it comes tumbling down, I would rather have it like either in faded in or pobably a crossfade out. Even the logo and cd just being there is ok..

Hi @MANswers

To disable cd and clearart animation. Open dialogvideoinfo.xml. Search for word disc. Then remove or comment out the following to stop the disc from rolling in.

Code:
<animation type="WindowOpen" reversible="true">
<effect type="slide" start="-1500,0" end="0" delay="800" time="4120" tween="quadratic" easing="out" />
<effect type="rotate" start="0" end="-720" center="auto" delay="800" time="4120" tween="quadratic" easing="out" />
<effect type="zoom" start="104" center="auto" end="100" delay="5120" time="140" tween="quadratic" easing="out" />
</animation>

Do the same with the clearart animation. The code should be just above the disc code.

Hope that helps.
Reply

Logout Mark Read Team Forum Stats Members Help
Dialog Info Screen New MOD3