[MOD] Quick and dirty mod to the music visualization info and coverart in fullscreen
#1
This just adds the cover art during fullscreen music visualisation to the progress bar:

Image

And with star rating:

Image

It's not a very clean mod because the cover art still shows up in the top bar if you've changed the settings to display the larger one. I don't use the larger view so I didn't bother with trying to figure out how to turn the cover artwork off on it.


In MusicVisualisation.xml, look for this:

Code:
        <control type="image">
            <posx>0</posx>
            <posy>0</posy>
            <width>1280</width>            
            <height>151</height>
            <texture>osd/fullscreen_bottom.png</texture>
            <visible>Player.HasAudio</visible>
        </control>

Add this directly below it:

Code:
                <!-- Adds cover art to bottom progress bar -->
                <control type="image">
                    <posx>16</posx>
                    <posy>16</posy>
                    <width>120</width>
                    <height>120</height>
                    <info>MusicPlayer.Cover</info>
                    <bordertexture border="-1">osd/osd_musicthumbframe.png</bordertexture>                
                </control>
                <!-- End adds cover art to bottom progress bar -->

And, if you want the stars on the right side of the progress bar, add this directly below that:
Code:
                <!-- Adds star rating to bottom progress bar -->
                <control type="image" id="1">
                    <description>Rating image</description>
                    <posx>1125</posx>
                    <posy>63</posy>
                    <width>125</width>
                    <height>25</height>
                    <info>Player.StarRating</info>
                    <aspectratio align="right">keep</aspectratio>
                </control>
                <!-- End adds star rating to bottom progress bar -->

OR download and unzip this to the 720p folder: http://files.worthlessforums.com/lol/Mus...sation.zip (album cover only) OR http://upload.markism.net/files/MusicVisualisation.zip (album cover and stars)
Reply
#2
Nice. Thank you for this. Smile
Image
Image
[INDENT][INDENT][INDENT][INDENT][INDENT][INDENT]• nate w.
[/INDENT][/INDENT][/INDENT][/INDENT][/INDENT][/INDENT]
Reply
#3
Woot, so many hacks to my Aeon now, its going to be a bitch to update.
Reply
#4
Now with the ability to see the stars when you press the up or down button on the d-pad to rate the song:

Image

Updated in first post.
Reply
#5
I prefer only a little data in my viz, so I stole from all the hard work from above Wink
Image

Since I basically cut & paste code, here is the musicvisualization.xml file. I also did some remarks on which section does what. As with other mods, to eliminate the top info bar you'll need to have the Music OSD top bar set to "min" mode (settings / customise / OSD).

http://www.mediafire.com/?zamijohjnzl

Here's a version where I modified font.xml to make things bigger, especially since there is room. I'll probably modify the spacing of these 2 lines next.
Image
Just change the sizes.

<!--WAS 24 -->
<font>
<name>Font_OSDMusicArtist</name>
<filename>aeon_settings.ttf</filename>
<size>40</size>
</font>

<!-- WAS 38 -->
<font>
<name>Font_OSDMusicTitle</name>
<filename>aeon_settings.ttf</filename>
<size>52</size>
</font>
Reply

Logout Mark Read Team Forum Stats Members Help
[MOD] Quick and dirty mod to the music visualization info and coverart in fullscreen0