HydrogenAudio

Hosted Forums => foobar2000 => 3rd Party Plugins - (fb2k) => Topic started by: greenfoot on 2007-06-19 21:28:34

Title: Album list help
Post by: greenfoot on 2007-06-19 21:28:34
I want to be able to arrange my music so that it first organizes by two main genres, classical and popular, and then have the classical part organized by composer and the popular part organized by artist.

Here's a mockup:


+ Classical
.........+ Bach, Johann Sebastian
.........+ Beethoven, Ludwig van
.........+ Brahms, Johannes
+ Popular
.........+ Ozzy Osbourne
.........+ Rod Stewart
.........+ Roy Orbison

Is that possible?
Title: Album list help
Post by: kanak on 2007-06-20 09:57:50
Code: [Select]
$if($stricmp(%genre%,'classical'),Classical|%composer%,Popular|%album artist%)|%album%


I added the %album% part even though you didn't specify for it. Also, i've used album artist to sort the popoular music, if you prefer, you can change it to simply "%artist%".

Hope this helps.
Title: Album list help
Post by: greenfoot on 2007-06-23 09:00:13
Oh wow thats perfect. Thank you so much!