HydrogenAudio

Hosted Forums => foobar2000 => 3rd Party Plugins - (fb2k) => Topic started by: Enigma776 on 2012-11-15 00:51:30

Title: Would like to change %album artist% to %artist%
Post by: Enigma776 on 2012-11-15 00:51:30
Hello,

Not sure if this is the right place or not but here goes.

I am using Silent Night V.6 by Arnie77, basically all my music uses %artist% to display the artists name, now the problem is this config uses %album artist% which is an issue for compilation albums as all it shows is "Various Artists". Is any one familiar with this config? Who could tell me how to change to %artist% instead of %album artist%

I looked around the NG playlist and ELplaylist but can not find any reference to the sorting of tags/names.
Title: Would like to change %album artist% to %artist%
Post by: PeteG on 2012-11-15 07:32:14
Nope, I'm not familiar with this skin, but I gave it a quick look. Here's what you might try.The Display tab should show this:

Code: [Select]
$if(%_isplaying%,
$rgb(178,131,87)[%album artist%],
$rgb(120,120,120)[%album artist%]
)

$if(%album artist%,
$rgb(178,131,87)[%dummy%],$rgb(120,120,120)[%directory%])

Change [%album artist%] to [%artist%] (x2) and %album artist% to %artist% (x1), like this:

Code: [Select]
$if(%_isplaying%,
$rgb(178,131,87)[%artist%],
$rgb(120,120,120)[%artist%]
)

$if(%artist%,
$rgb(178,131,87)[%dummy%],$rgb(120,120,120)[%directory%])

Hit OK.
In the upper pane (Media Library) choose Various Artists, in the lower pane (Playlist view) you now have Artists in the column.

HTH

It's a bit more tricky (but it can of course be done) to change Album Artist to Artist above the seekbar at the top, if you aren't familiar with the WSH Panel Mod. I'll try to guide you, if you are interested?

Edit: I can't guarantee that you won't experience some odd behaviour because of the above change. As noted, I only gave the skin a quick look.
Title: Would like to change %album artist% to %artist%
Post by: Enigma776 on 2012-11-16 04:08:34
Seems just doing the edit for the columns UI did the trick. thank you so much.