This is by far my favorite program and since i recently got a large pile of files to tag i looked into optimizing my actions.
I figured out every wish i have with the information on this forum except for two i couldnt make it work at the end:
I hope you can help with these situations:
- Remove the Feat. in every situation in the title:
Test Ft. Test (Test Remix) --> Test (Test Remix)
I tried it with a regex: \(.+?\) but with no luck to only remove the Feat. part of the title.
- Remove the (Instrumental Version) if the album is only instrumentals;
IF %album% end with (Instrumentals) remove the text (Instrumental Version) in the title;
I came up with this but obviously it is not perfect yet:
Format title
$if($eql($right(%album%,2),(Instrumentals)),$regexp(%title%,\(.+?\),%title%)
Thanks in advance!