PDA

View Full Version : [MOD] Quick and dirty mod to the music visualization info and coverart in fullscreen


LaTropa64
2009-04-14, 01:36
This just adds the cover art during fullscreen music visualisation to the progress bar:

http://i41.tinypic.com/11lslc1.jpg

And with star rating:

http://i44.tinypic.com/2yum52t.jpg

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:

<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:

<!-- 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:
<!-- 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/MusicVisualisation.zip (album cover only) OR http://upload.markism.net/files/MusicVisualisation.zip (album cover and stars)

natew
2009-04-15, 00:14
Nice. Thank you for this. :)

PainToad
2009-04-15, 00:47
Woot, so many hacks to my Aeon now, its going to be a bitch to update.

LaTropa64
2009-04-16, 01:43
Now with the ability to see the stars when you press the up or down button on the d-pad to rate the song:

http://i44.tinypic.com/2yum52t.jpg

Updated in first post.

curtis-r
2009-05-22, 17:29
I prefer only a little data in my viz, so I stole from all the hard work from above :;):
http://www0.mediafire.com/imgbnc.php/0fe4f4ad1be415f93a841cefa95b59425g.jpg (http://www.mediafire.com/imageview.php?quickkey=m32ui23jlmw&thumb=4)

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.
http://www2.mediafire.com/imgbnc.php/84f48711fbdce82686bc22b74807f2b04g.jpg (http://www.mediafire.com/imageview.php?quickkey=jmudxn4jjze&thumb=4)
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>