Hi!
I've got a question abount rule based mapping in the converter.
Following scenario: I some (not all) of my FLAC files have a custom tag "albumversion". When converting to MP3, I want to put this album version in the "album" tag so that it looks like "<album> (<albumversion>)" - see the brackets?
My custom rule for that is
This works as expected if the FLAC file has this cusom tag "albumversion".
But when it doesn't have it, the converter puts the (empty) brackets in the "album" tag. Looks like the if-condition is not evaluated correctly here.
Any idea how I can prevent the converter to put in the brackets when the FLAC file doesn't have an "albumversion" tag?
I've got a question abount rule based mapping in the converter.
Following scenario: I some (not all) of my FLAC files have a custom tag "albumversion". When converting to MP3, I want to put this album version in the "album" tag so that it looks like "<album> (<albumversion>)" - see the brackets?
My custom rule for that is
Code:
IF ALBUMVERSION=[anyvalue] SET ALBUM=[album] ([tag]ALBUMVERSION[])
But when it doesn't have it, the converter puts the (empty) brackets in the "album" tag. Looks like the if-condition is not evaluated correctly here.
Any idea how I can prevent the converter to put in the brackets when the FLAC file doesn't have an "albumversion" tag?
Comment