Release fTV Fred Edition - with full working and integrated LiveTV part
Ok, so I started exploring the skin xml files..
Maybe a change I just made, which you might want to integrate: Support for a 4k label in Video OSD
I know not an awesomely big change, but somewhere I need to start Big Grin

so in VideoOSD.xml

from this:
Code:
<!--  HD label -->
  <control type="label">
  <left>24</left>
  <top>-2</top>
  <width>auto</width>
  <height>34</height>
  <font>Bold28</font>
  <textcolor>ffebebeb</textcolor>
  <label>[B]HD[/B]</label>
  <visible>Integer.IsGreater(VideoPlayer.VideoResolution,710)</visible>
</control>
to this:
Code:
<!--  HD label -->
  <control type="label">
  <left>24</left>
  <top>-2</top>
  <width>auto</width>
  <height>34</height>
  <font>Bold28</font>
  <textcolor>ffebebeb</textcolor>
  <label>[B]HD[/B]</label>
  <visible>Integer.IsGreater(VideoPlayer.VideoResolution,710) + Integer.IsLess(VideoPlayer.VideoResolution,1080)</visible>
</control>
<!--  4K label -->
  <control type="label">
  <left>24</left>
  <top>-2</top>
  <width>auto</width>
  <height>34</height>
  <font>Bold28</font>
  <textcolor>ffebebeb</textcolor>
  <label>[B]4K[/B]</label>
  <visible>Integer.IsGreater(VideoPlayer.VideoResolution,1080) + Integer.IsLess(VideoPlayer.VideoResolution,2160)</visible>
</control>

So if you like to include as there will be / is more and more 4k content.
Reply


Messages In This Thread
Studio Artwork - by Grandhuggy - 2016-01-27, 02:27
RE: fTV Fred Edition - with full working and integrated LiveTV part - by Vlaves - 2017-01-22, 11:49
Banners "None" not recognized? - by mozomo - 2017-01-28, 18:58
Logout Mark Read Team Forum Stats Members Help
fTV Fred Edition - with full working and integrated LiveTV part4