marcopixel / monstercat-visualizer

A real time audio visualizer for Rainmeter similar to the ones used in the Monstercat videos.
MIT License
920 stars 103 forks source link

Have the ability to place the song name above the artist. #295

Closed jzatarain closed 4 years ago

jzatarain commented 4 years ago

Just like in spotify, I would like to have the song name above the artists. Probably a new variant would do.

Also, a variant to have it centered would be nice too, depending on your background.

Could this be made?

jzatarain commented 4 years ago

What I did in the meantime was to change the fonts for the title and the song, so that the song stands out more, and changed the shadow properties. image

marcopixel commented 4 years ago

Since this is pretty easy to do yourself, i'll recommend anyone who wants to do this to just go into the specific skin file and just switch the measures between the two meters (so MeterArtist uses MeasureTrack and vice versa).

You can read more about on how rainmeter skins work here: https://docs.rainmeter.net/manual/getting-started/

andre-paulo98 commented 3 years ago

For those looking for this, here's the things you need to change:

diff --git a/Right.ini b/Right-Flipped.ini
index a2c9445..451bfa0 100644
--- a/Right.ini
+++ b/Right-Flipped.ini
@@ -59,7 +59,7 @@ UpdateDivider=-1

 [MeterArtist]
 Meter=String
-MeasureName=MeasureArtist
+MeasureName=MeasureTrack
 X=#SkinWidth#
 Y=(30*#ScaleSongInformation#)
 FontFace=#Font1#
@@ -75,7 +75,7 @@ Group=GroupDynamicColors | GroupShadowMeters

 [MeterTrack]
 Meter=String
-MeasureName=MeasureTrack
+MeasureName=MeasureArtist
 X=#SkinWidth#
 Y=(-20*#ScaleSongInformation#)R
 FontFace=#Font2#

Or simply the Right file with the Title and Artist flipped: Right.txt (you will need to change the extenstion to .ini)