Hi!
I don’t like to have multiple artists as one in my music library, such as:
- artist 1
- artist 2
- artist 2 & artist 1
- artist 2 & artist 3
- artist 3
and so on…
Here is my taggerscript that allows me to automatically move the featuring artists in the title (or album) tag:
$set(albumartist,$rreplace(%albumartist%,\\s+feat\\..*,))
$set(_feat_title,$rsearch(%artist%,\\s+\\\(?\(f\(ea\)?t\\.[^\)]*\)))
$set(artist,$rreplace(%artist%,\\s+\\\(?f\(ea\)?t\\.[^\)]*\\\)?,))
$set(title,$if(%_feat_title%,%title% \(%_feat_title%\),%title%))
$set(_feat_album,$rsearch(%albumartist%,\\s+\\\(?\(f\(ea\)?t\\.[^\)]*\)))
$set(albumartist,$rreplace(%albumartist%,\\s+\\\(?f\(ea\)?t\\.[^\)]*\\\)?,))
$set(album,$if(%_feat_album%,%album% \(%_feat_album%\),%album%))
But it seems it only looks for the text “feat.”, while I would also like it to search for:
- &
- ft.
- featuring
- with
- et
- avec
- ,
In order to move it into the album or track title following this scheme : (feat. other artist)
How can I do that?