Kodi Community Forum
Mod Dialog Info Screen New MOD - 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: Aeon MQ (https://forum.kodi.tv/forumdisplay.php?fid=68)
+---- Thread: Mod Dialog Info Screen New MOD (/showthread.php?tid=279210)

Pages: 1 2 3 4 5


RE: Dialog Info Screen New MOD ( Rotten Tomatoes, Metacritic rating, Discart, Logo etc) - movie78 - 2016-06-14

(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?


RE: Dialog Info Screen New MOD ( Rotten Tomatoes, Metacritic rating, Discart, Logo etc) - User 263865 - 2016-06-14

(2016-06-14, 17:22)movie78 Wrote: Can it be added?

Yes add them to IncludesVariables.xml after line 2417


RE: Dialog Info Screen New MOD ( Rotten Tomatoes, Metacritic rating, Discart, Logo etc) - movie78 - 2016-06-14

(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>



RE: Dialog Info Screen New MOD ( Rotten Tomatoes, Metacritic rating, Discart, Logo etc) - User 263865 - 2016-06-14

(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


RE: Dialog Info Screen New MOD ( Rotten Tomatoes, Metacritic rating, Discart, Logo etc) - movie78 - 2016-06-14

Did not work and the filenames contain those tags


RE: Dialog Info Screen New MOD ( Rotten Tomatoes, Metacritic rating, Discart, Logo etc) - User 263865 - 2016-06-14

(2016-06-14, 18:07)movie78 Wrote: Did not work and the filenames contain those tags

you should clean/ update library


RE: Dialog Info Screen New MOD ( Rotten Tomatoes, Metacritic rating, Discart, Logo etc) - movie78 - 2016-06-14

(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


RE: Dialog Info Screen New MOD ( Rotten Tomatoes, Metacritic rating, Discart, Logo etc) - User 263865 - 2016-06-14

(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


RE: Dialog Info Screen New MOD ( Rotten Tomatoes, Metacritic rating, Discart, Logo etc) - movie78 - 2016-06-14

(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...


RE: Dialog Info Screen New MOD ( Rotten Tomatoes, Metacritic rating, Discart, Logo etc) - User 263865 - 2016-06-14

(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


RE: Dialog Info Screen New MOD ( Rotten Tomatoes, Metacritic rating, Discart, Logo etc) - movie78 - 2016-06-14

Where does the flags goes?

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


RE: Dialog Info Screen New MOD ( Rotten Tomatoes, Metacritic rating, Discart, Logo etc) - User 263865 - 2016-06-14

(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


RE: Dialog Info Screen New MOD ( Rotten Tomatoes, Metacritic rating, Discart, Logo etc) - movie78 - 2016-06-14

Works!!!

Can you increase the size of Clearlogo?

Image

Thanks!


RE: Dialog Info Screen New MOD ( Rotten Tomatoes, Metacritic rating, Discart, Logo etc) - MANswers - 2016-07-03

(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/oznj9kla24cs21j/DialogVideoInfo.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..


Dialog Info Screen New MOD ( Rotten Tomatoes, Metacritic rating, Discart, Logo etc) - the_bo - 2016-07-03

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.