I use foobar to do my music each week to do a batch edit on tracks these are the things that the script has to do. unfortunately if i want to upgrade to catalina foobar will no longer be an option as the lack of 32 bit support for wine so im wondering if yate can do the same thing it looks pretty advanced
these are the regular(weekly) things i have to do all changes are made to the title
1 After Hours - KREAM Remix ---------> After Hours ( KREAM Remix)
looks for the fact it has a - and not a ) at the end then implements them
2 Alcoholic - DJ City Club Edit (Clean) ----------> Alcoholic ( DJ City Club Edit (Clean)
looks for the fact it has a - and a ) at the end then implements the -
3 Lost Your Mind (intro - Dirty) -----------------> Lost Your Mind (intro Dirty) looks in between brackets and if theres a - deletes it
Sometimes there can be tracks that would conflict with some rules that could be wrote e.g
Rock Wit U (Awww Baby) - Charlie Lane Remix
this is the scripts that i used in foobar
format value
destination field name
TITLE
formatting pattern
$if($and($strchr(%title%,'('),$strchr(%title%,')'),$strstr(%title%, - )),$if($put(var1,$strstr($substr(%title%,$strchr(%title%,'('),$strchr(%title%,')')), - )), $substr(%title%,1,$sub($add($strchr(%title%,'('),$get(var1)),1))$substr(%title%,$add($strchr(%title%,'('),$get(var1),2),$len(%title%)),%title%),%title%)
and
destination field name
TITLE
formatting pattern
$if($strstr(%title%, - ),$replace(%title%, - , '(')$if($strcmp($substr(%title%,$len(%title%),$len(%title%)),')'),,')'),%title%)
|