Increase album art fade time?
#1
When I go to play a song and my visualizations kick in, the album art cover shows up in the bottom left hand corner for about 10-15 seconds then goes away. How can I increase the time it stays on the screen? My current MusicVisualisations.xml:

Code:
<!-- Alaska
  -->
- <window id="2006">
  <allowoverlay>yes</allowoverlay>
- <controls>
- <control type="visualisation" id="2">
  <description>visualisation</description>
  <posx>0</posx>
  <posy>0</posy>
  <width>1280</width>
  <height>720</height>
  <animation effect="fade" start="0" end="100" time="400">WindowOpen</animation>
  <animation effect="fade" start="100" end="0" time="200">WindowClose</animation>
  </control>
- <control type="group">
  <include>Animation_SlideDownFadeOut</include>
  <visible>!Window.IsActive(120)</visible>
  <include>OSDHeading</include>
  <include>OSDSeekbar</include>
  </control>
- <control type="group">
  <visible>!Window.IsActive(120)</visible>
  <posy>630</posy>
- <animation type="WindowOpen">
  <effect type="slide" start="0,300" end="0,0" time="600" tween="cubic" easing="out" />
  <effect type="fade" start="0" end="100" time="600" />
  </animation>
- <animation type="WindowClose">
  <effect type="slide" start="0,0" end="0,300" time="600" tween="cubic" easing="out" />
  <effect type="fade" start="100" end="0" time="600" />
  </animation>
- <animation type="Visible">
  <effect type="slide" start="0,300" end="0,0" time="600" tween="cubic" easing="out" />
  <effect type="fade" start="0" end="100" time="600" />
  </animation>
- <animation type="Hidden">
  <effect type="slide" start="0,0" end="0,300" time="600" tween="cubic" easing="out" />
  <effect type="fade" start="100" end="0" time="600" />
  </animation>
- <control type="image">
  <posx>0</posx>
  <posy>0</posy>
  <width>1280</width>
  <height>165</height>
  <texture>common/white.png</texture>
  <colordiffuse>OSDBackground</colordiffuse>
  </control>
- <control type="label">
  <description>Current Track</description>
  <posx>250</posx>
  <posy>10</posy>
  <width>800</width>
  <height>18</height>
  <aligny>center</aligny>
  <align>left</align>
  <font>Font_Date</font>
  <textcolor>Date</textcolor>
  <label>$INFO[MusicPlayer.Title,[b]$LOCALIZE[143] [/b]]</label>
  <animation effect="slide" end="0,22" condition="IsEmpty(MusicPlayer.offset(-1).Title)">Conditional</animation>
  <animation effect="slide" end="0,22" condition="IsEmpty(MusicPlayer.offset(1).Title)">Conditional</animation>
  </control>
- <control type="label">
  <description>Previous Track</description>
  <posx>250</posx>
  <posy>32</posy>
  <width>800</width>
  <height>18</height>
  <aligny>center</aligny>
  <align>left</align>
  <font>Font_Date</font>
  <textcolor>Date</textcolor>
  <label>$INFO[MusicPlayer.offset(-1).Title,[b]$LOCALIZE[210]: [/b]]</label>
  <animation effect="slide" end="0,22" condition="IsEmpty(MusicPlayer.offset(1).Title)">Conditional</animation>
  </control>
- <control type="label">
  <description>Next Track</description>
  <posx>250</posx>
  <posy>54</posy>
  <width>800</width>
  <height>18</height>
  <aligny>center</aligny>
  <align>left</align>
  <font>Font_Date</font>
  <textcolor>Date</textcolor>
  <label>$INFO[MusicPlayer.offset(1).Title,[b]$LOCALIZE[209]: [/b]]</label>
  </control>
- <control type="label">
  <description>Rating Info</description>
  <posx>1250</posx>
  <posy>10</posy>
  <width>360</width>
  <height>18</height>
  <aligny>center</aligny>
  <align>right</align>
  <font>Font_Date</font>
  <textcolor>Date</textcolor>
  <label>$INFO[MusicPlayer.Rating,[b]$LOCALIZE[563]: [/b]]</label>
  <animation effect="slide" end="0,22" condition="IsEmpty(MusicPlayer.Year)">Conditional</animation>
  <animation effect="slide" end="0,22" condition="IsEmpty(MusicPlayer.PlaylistPosition)">Conditional</animation>
  </control>
- <control type="label">
  <description>Year Info</description>
  <posx>1250</posx>
  <posy>32</posy>
  <width>360</width>
  <height>18</height>
  <aligny>center</aligny>
  <align>right</align>
  <font>Font_Date</font>
  <textcolor>Date</textcolor>
  <label>$INFO[MusicPlayer.Year,[b]$LOCALIZE[40124] [/b]]</label>
  <animation effect="slide" end="0,22" condition="IsEmpty(MusicPlayer.PlaylistPosition)">Conditional</animation>
  </control>
- <control type="label">
  <description>Track Info</description>
  <posx>1250</posx>
  <posy>54</posy>
  <width>360</width>
  <height>18</height>
  <aligny>center</aligny>
  <align>right</align>
  <font>Font_Date</font>
  <textcolor>Date</textcolor>
  <label>$INFO[MusicPlayer.PlaylistPosition,[b]$LOCALIZE[554]: [/b]]$INFO[MusicPlayer.PlaylistLength,/]</label>
  </control>
  </control>
  <include>Object_DebugGrid</include>
- <control type="group">
  <include>Debug</include>
  <visible>Skin.HasSetting(debugmode)</visible>
  </control>
  </controls>
  </window>


I got the progress bar and bottom info section to stay up permanently, but cant figure out what alters the album art time. TIA!
Reply
#2
http://wiki.xbmc.org/index.php?title=Adv...uration.3E
Reply
#3
Hitcher Wrote:http://wiki.xbmc.org/index.php?title=Adv...uration.3E

Thanks for the link Hitcher, I cannot seem to find what I'm looking for though. But to be honest, not sure what to look for. Smile

I do see the time functions are in milliseconds however.

Edit: cancel that, I see you linked me to a spot on the wiki. Thank you!
Reply

Logout Mark Read Team Forum Stats Members Help
Increase album art fade time?0