Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: Custom tag remapping (Read 377 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

Custom tag remapping

Hi! I have a fairly convoluted set up for translating the tites non-english music:
%title% (original language title)
%title english% (official english title of the music)
%title translate% (unofficial translation of the title)
%title latin% (latinization of the original title if its not in a latin script)

its quite the hassle to have to constantly enter a long string of $if statements for title formatting. I read about the automatic tag remapping that foobar does (i.e. the %album artist% tag checks for %album artist%->%artist%->%composer%->%performer%) and was wondering if there was any way to write custom scripts like these for use in foobar? i cant seem to find any discussion on this topic anywhere.

Thanks for any help you can provide!


Re: Custom tag remapping

Reply #1
The equivalent is $if3() with as many fields as you like - it returns the first one that is tagged. For that reason you probably want to put fields in reverse order of most often tagged. i.e. if %title% is always tagged, put that one last.

Code: [Select]
$if3(%tag1%,%tag2%,%tag3%,%tag4%,no tag found)