I have a bunch of files like this example:
Title: Man of Mystery (The Shadows Cover)
I want to change them to be like this:
Title: Man of MysteryOriginal Artist: The Shadows
My plan was to do the following in an action group that could run on my entire library:
1) Copy all of my tracks' titles into Original Artist (I have nothing there now)I got stuck at step 2, where I tried to use Regular Expressions but couldn't figure out how to do exactly what I wanted. This was my Regular Expression: \((.{*}) Cover\)
Remove the space leading the first "(" and anything between () in any TITLE field string that ends in " Cover)"
Make all ORIGARTIST fields that do not contain " Cover)" blank. Hopefully avoid having to manually handle cases like the song "The Cover of the Rolling Stone."
Remove "(" and " Cover)" from ORIGARTIST field.
Thanks for your help.