Showing music fanart when in fullscreen mode
#1
I would like the following behavior when playing music in fullscreen mode:
  • If fanart exists for the currently playing artist, show the fanart instead of the visualization.
  • Otherwise, show the current visualization.
Is this possible with either the skin options or by modifying the XML files?
Reply
#2
Check my signature...my MOD has that capability...

cheers,
mad-max
- - - Tribute to Metallica - - -
If I managed to help you, please click my reputation
Reply
#3
Meh, I don't really want to mess around with an entire mod. I just want this one small change. I've tried editing MusicVisualisation.xml myself but I can't get the fanart to show up. Even if I remove the entire <control> section for the visualization, it still appears in fullscreen mode. Any ideas?
Reply
#4
Open up MusicVisualisation.xml and below this
PHP Code:
        <control type="visualisation" id="2">
            <!-- 
FIX ME Music Visualization needs to have an id of 2 in this window to be able to lock or change preset -->
            <
description>visualisation</description>
            <
posx>0</posx>
            <
posy>0</posy>
            <
width>1280</width>
            <
height>720</height>
        </
control
add this
PHP Code:
        <control type="image">
            <
description>Fanart Image for Artist</description>
            <
posx>0</posx>
            <
posy>0</posy>
            <
width>1280</width>
            <
height>720</height>
            <
texture background="true">$INFO[MusicPlayer.Property(Fanart_Image)]</texture>
            <
colordiffuse>AAFFFFFF</colordiffuse>
            <
visible>!IsEmpty(MusicPlayer.Property(Fanart_Image))</visible>
            <
fadetime>600</fadetime>
        </
control
if you dont want the visualisation to show through as well then remove this line
PHP Code:
<colordiffuse>AAFFFFFF</colordiffuse
Reply
#5
(2012-05-23, 23:30)TheEvilHammer Wrote: Meh, I don't really want to mess around with an entire mod. I just want this one small change. I've tried editing MusicVisualisation.xml myself but I can't get the fanart to show up. Even if I remove the entire <control> section for the visualization, it still appears in fullscreen mode. Any ideas?

In that case take a look at the Artist Slideshow addon. Mad-max's mod includes support for that (along with other things), but the actual changes needed just for Artist Slideshow are pretty small (and explained on the wiki page for the addon).
Reply

Logout Mark Read Team Forum Stats Members Help
Showing music fanart when in fullscreen mode0