[NEW FEATURE]. Add movies End time to InfoBar.
#1
Thumbs Up 
Hi there.

There has been a quite some time now a function "$INFO[Player.FinishTime]" which returns a realtime when the clip/movie ends. For somehow nowbody has implemented this to the Skin. I have been using this for 6months now.

The Tag for this is
Code:
<control type="label" id="1">
<description>The Time when the Video ends</description>
<posx>1250</posx>
<posy>30</posy>
<width>200</width>
<height>25</height>
<textcolor>green</textcolor>
<label>$INFO[Player.FinishTime]</label>
<align>right</align>
<aligny>center</aligny>
<font>font13</font>
</control>
This will Add a RealClock (like 19:30) below the Now Time in Video FullScreen infobar.
I added this section under every "System Time Label" tag.. 6 times I remember...

This XML is ment to be used with "XBMC-8.10-FINAL-T3CH-PROPER" build's "PM3.HD" skín. "DialogFullScreenInfo.xml" file in "skin\PM3.HD\720p"
Willl work with builds upwards and can be intregrated to ANY skin.. values (cords..) may vary though.
Reply
#2
Very nice feature.

I've manage to add that same feature, some time ago, in "Vision2" skin, i took the code from the "Focus" skin (current release doesnt have it anymoreSad).

The first skin i saw this feature was in the "Vinci" skin.


Could you post a tag, like the one above, for MediaStream?

Thanks in advance.
 
  • Intel NUC Kit DN2820FYKH ~ Crucial DDR3L SO-DIMM 4GB ~ SanDisk ReadyCache 32GB SSD ~ Microsoft MCE model 1039 RC6 remote
Reply
#3
xbs08 Wrote:Very nice feature.
I've manage to add that same feature, some time ago, in "Vision2" skin, i took the code from the "Focus" skin (current release doesnt have it anymoreSad).
The first skin i saw this feature was in the "Vinci" skin.
Could you post a tag, like the one above, for MediaStream?
Thanks in advance.

Sorry, I do not know anything about tagging etc...
Can this be intergated to the T3CH packages so it will be avail to all?
Reply
#4
i'm using it in basics-vision

Image
http://www.xbmcnerds.com - german xbmc community
Reply
#5
realjobe Wrote:Sorry, I do not know anything about tagging etc...
Can this be intergated to the T3CH packages so it will be avail to all?

This is a skin feature.
 
  • Intel NUC Kit DN2820FYKH ~ Crucial DDR3L SO-DIMM 4GB ~ SanDisk ReadyCache 32GB SSD ~ Microsoft MCE model 1039 RC6 remote
Reply
#6
I tried to add this to PM3HD. Is there a particular spot your supposed to place this in the file? EIther that or I must of done something else wrong. Wink
Reply
#7
kizer Wrote:I tried to add this to PM3HD. Is there a particular spot your supposed to place this in the file? EIther that or I must of done something else wrong. Wink

I would gladly attach the file to here, but it is not possible.
Take a look in there. http://pastebin.com/m4720c34c

look for the "The Time when the Video ends" tags. 5 times !
Skin is PM3HD, with 720p mode!
Reply
#8
This Feature is also in horizon an aeon mod version4
XBMC Frodo 12 - Windows 7 - Asrock Ion 330HT - Aeon Nox
Reply
#9
xbs08 Wrote:Very nice feature.

I've manage to add that same feature, some time ago, in "Vision2" skin, i took the code from the "Focus" skin (current release doesnt have it anymoreSad).

The first skin i saw this feature was in the "Vinci" skin.


Could you post a tag, like the one above, for MediaStream?

Thanks in advance.

Can someone implement this feature for Mediastream please Smile
I played with VideoFullScreen.xml but no go.

edit: the correct file to edit is the DialogSeekbar.xml Wink a feature like this would be great.
http://s3.supload.com/free/screenshot000....png/view/
http://forum.xbmc.org/showpost.php?p=279...stcount=47
Reply
#10
empty Wrote:Can someone implement this feature for Mediastream please Smile
I played with VideoFullScreen.xml but no go.

edit: the correct file to edit is the DialogSeekbar.xml Wink a feature like this would be great.
http://s3.supload.com/free/screenshot000....png/view/
http://forum.xbmc.org/showpost.php?p=279...stcount=47

Gonna try that when i get home Smile
 
  • Intel NUC Kit DN2820FYKH ~ Crucial DDR3L SO-DIMM 4GB ~ SanDisk ReadyCache 32GB SSD ~ Microsoft MCE model 1039 RC6 remote
Reply
#11
Just add/change this (bold) to "VideoFullScreen.xml" file in folder 720p of MediaStream

<control type="label" id="1">
<description>Duration Label</description>
<posx>1115</posx>
<info>Player.Duration</info>
<font>MediumSmallAltDefaultFont</font>
<textcolor>Unfocused</textcolor>
<align>right</align>
<width>300</width>
</control>

<control type="label" id="1">
<description>Duration Label</description>
<posx>1125</posx>
<label>/</label>
<font>MediumSmallAltDefaultFont</font>
<textcolor>Unfocused</textcolor>
<align>right</align>
<width>20</width>
</control>

<control type="label" id="1">
<description>Duration Label</description>
<posx>1168</posx>
<info>Player.FinishTime</info>
<font>MediumSmallAltDefaultFont</font>
<textcolor>Unfocused</textcolor>
<align>right</align>
<width>300</width>
</control>
 
  • Intel NUC Kit DN2820FYKH ~ Crucial DDR3L SO-DIMM 4GB ~ SanDisk ReadyCache 32GB SSD ~ Microsoft MCE model 1039 RC6 remote
Reply
#12
Instead you can just change this section of the code:
(this can be found at the end of the "VideoFullScreen.xml" file)

<control type="label" id="1">
<description>Video Player Duration & Finish Time Label</description>
<posx>1168</posx>
<label>$INFO[Player.Duration]$INFO[Player.FinishTime, / ]</label>
<font>MediumSmallAltDefaultFont</font>
<textcolor>Unfocused</textcolor>
<align>right</align>
<width>600</width>
</control>
 
  • Intel NUC Kit DN2820FYKH ~ Crucial DDR3L SO-DIMM 4GB ~ SanDisk ReadyCache 32GB SSD ~ Microsoft MCE model 1039 RC6 remote
Reply
#13
Thanks. A little cut and paste action of yours and it works pretty well. Wink

Sorry for being lazy, but man that is a lot of searching around to make it happen.
Reply

Logout Mark Read Team Forum Stats Members Help
[NEW FEATURE]. Add movies End time to InfoBar.0