2017-10-16, 00:03
** Updated code in 2nd response
Features: (During video play)
- Always visible clock on the bottom left
- Always visible end time just below (smaller)
- Always visible episode number (s x e) or movie title
Feel completely free to alter/ post suggestions or changes/ repost elsewhere etc.
Add to: VideoFullScreen.xml just after <controls>
- Tested on confluence/ v17 / Raspberry Pi (Make sure you're logged in as root before attempting to edit/ overwrite)
- Tested on confluence/ v17/ Windows 10
- Tested on confluence/ v17/ Android - Samsung S6
- Path (may vary): kodi/addons/skin.confluence/720p
Should work on any skin.
Features: (During video play)
- Always visible clock on the bottom left
- Always visible end time just below (smaller)
- Always visible episode number (s x e) or movie title
Feel completely free to alter/ post suggestions or changes/ repost elsewhere etc.
Add to: VideoFullScreen.xml just after <controls>
- Tested on confluence/ v17 / Raspberry Pi (Make sure you're logged in as root before attempting to edit/ overwrite)
- Tested on confluence/ v17/ Windows 10
- Tested on confluence/ v17/ Android - Samsung S6
- Path (may vary): kodi/addons/skin.confluence/720p
Should work on any skin.
Code:
<!-- Start - Created by Crunchward -->
<control type="label" id="1">
<description>Current time</description>
<left>4</left>
<top>690</top>
<width>800</width>
<height>5</height>
<align>left</align>
<aligny>center</aligny>
<font>font12</font>
<textcolor>white</textcolor>
<shadowcolor>black</shadowcolor>
<label>$INFO[System.Time]</label>
<animation type="WindowOpen">
<effect type="fade" start="0" end="100" time="1000"/>
<effect type="slide" start="0,13" end="0,0" time="1000"/>
</animation>
<animation effect="fade" start="100" end="0" time="100">WindowClose</animation>
</control>
<control type="label" id="1">
<description>End time and episode count</description>
<left>6</left>
<top>704</top>
<width>800</width>
<height>5</height>
<align>left</align>
<aligny>center</aligny>
<font>font10</font>
<textcolor>grey</textcolor>
<shadowcolor>black</shadowcolor>
<label>[color=white]$INFO[Player.FinishTime][/color][color=grey] Ep:$INFO[VideoPlayer.Season,,x]$INFO[VideoPlayer.Episode][/color]</label>
<animation type="WindowOpen">
<effect type="fade" start="0" end="90" time="2000"/>
<effect type="slide" start="0,13" end="0,0" time="1500"/>
</animation>
<animation effect="fade" start="100" end="0" time="100">WindowClose</animation>
<visible>VideoPlayer.Content(Episodes)</visible>
</control>
<control type="label" id="1">
<description>End time and Movie name</description>
<left>6</left>
<top>704</top>
<width>800</width>
<height>5</height>
<align>left</align>
<aligny>center</aligny>
<font>font10</font>
<textcolor>grey</textcolor>
<shadowcolor>black</shadowcolor>
<label>[color=white]$INFO[Player.FinishTime][/color][color=grey] $INFO[Player.Title][/color]</label>
<animation type="WindowOpen">
<effect type="fade" start="0" end="90" time="2000"/>
<effect type="slide" start="0,13" end="0,0" time="1500"/>
</animation>
<animation effect="fade" start="100" end="0" time="100">WindowClose</animation>
<visible>!VideoPlayer.Content(Episodes)</visible>
</control>
<!-- End - Created by Crunchward -->