(2016-08-26, 20:26)Thugbear Wrote: 1. Is there and option to have the furniture show for a couple of seconds when playing music, and after that hide (much like the time out on the video play bar)? I love the look, but to make sure the cover and static parts don't burn in and show the whole time, just popup again for 10-15 seconds when the next song starts?
Thugbear,
You can do this by editing MusicVisualisation.xml, which appears in the
addons/skin.aeonmq7/1080i folder
The three main viz layouts each have their own section:
Line 106: <!-- layout estilo 1 -->
Line 299: <!-- layout estilo 2 -->
Line 482: <!-- Layout 3 -->
At the beginning of each of those sections, you'll see:
Code:
<left>0</left>
<top>1160</top>
Paste in this bit of code just before those two lines:
Code:
<visible>[Player.ShowInfo | Window.IsActive(MusicOSD) | !Visualisation.Enabled] + ![Window.IsVisible(AddonSettings) | Window.IsVisible(SelectDialog) | Window.IsVisible(VisualisationPresetList)]</visible>
<animation effect="fade" time="500">VisibleChange</animation>
It should look like this when you're done:
Code:
<visible>[Player.ShowInfo | Window.IsActive(MusicOSD) | !Visualisation.Enabled] + ![Window.IsVisible(AddonSettings) | Window.IsVisible(SelectDialog) | Window.IsVisible(VisualisationPresetList)]</visible>
<animation effect="fade" time="500">VisibleChange</animation>
<left>0</left>
<top>1160</top>
The fade-in and fade-out time is controlled by time="500" (in milliseconds).
To control how long the song information remains onscreen when the song changes during visualisations, you'll need to add the <songinfoduration> tag to your advancedsettings.xml. I believe the default is 10 seconds, if you don't want to bother.
http://kodi.wiki/view/advancedsettings.xml
BTW, I've noticed that when you first start playback viz, Kodi / Aeon MQ7 doesn't remember that you want the info to fade out, so you'll have to manually hit Info to get it to fade out the first time. After that, it will reappear when the next song starts and fade away on its own.