ë_ë whatever man, I'm outa here, gotta split and make food
kyomi
Have fun :)
In the file naming -> "Name files like this" is there anyway to have it so that it would use %albumartist% unless %albumartist% is "Various Artists" and in that cause just use %artist% ?
The "if"s only seem to see if something is there or not
Mineo
you can use something like $if($eq(%albumartist%,Various Artists), %artist%, %albumartist%)
(if you don't have any music made by one of the other "Various Artists" in the db :) )
kyomi
Nope, I'm just trying to escape things being sorted under "Various Artists" when there is more then one Artist on the album
in that case, you can use the %compilation% tag which will be 1 (or True or something like that) if there's more than one artist
kyomi
I like your way of doing it
That way if it's not tagged as a compliation properly or something, it'll still avoid "Various Artists"
You don't need to put Various Artists in quotes or anything?
Mineo
no idea, that's why I said "something like" :)
Diaoul joined the channel
kyomi
Yeah.. that didn't work >.>
But at least it's a start
reosarevok
kyomi: "compilation" in Picard just means the release artist and all the track artists don't match, IIRC
So it's automatic, it doesn't depend on whether the *type* is compilation
kyomi
Oh cool
reosarevok
(it's the iTunes meaning of the word)
kyomi
Ew..
Mineo
is that not what I said?:P
reosarevok
Mineo: yeah, just making it more explicit :p
kyomi
So... something like $if($in(%compliation%, yes), %artist%, %albumartist%) ?
joris joined the channel
Mineo
nah, if you use %compilation%, $if(%compilation%,... is enough
kyomi
ok
thanks
sweet.. it works now :D
Ben\Sput joined the channel
Mineo
as long as the value of a tag evaluates to something that's True in python (like non-empty strings, numbers >0, whatever) you can use it as a condition in $if