Removing Ft. Artist from Artist tag

I have tried searching to remove the ft. artist however have not found anything that helps me. All i would want was the artist Abandon All ships without the ft. I tried the plugins and naming scripts but the only thing that works is to remove it manually.

Tried this but could not get to work GitHub - NobahdiAtoll/MusicBrainzPicardPlugins: Plugins for Musicbrainz Picard Audio Tagger

For your case you could use scripting, e.g.

$set(artist,$rreplace(%artist%,\\s+[Ff]\(ea\)?t\\..*,)) 

This should capture a few variants, such as “feat.”, “ft.”, “Feat.” and “feat.”. If I understand it correctly you are trying to remove this from existing tags and don’t tag against MusicBrainz metadata. If this is the case you need to run the script manually for your files. Add the above to a new script in Options > Scripting, give it a nice name (e.g. “Remove Ft. from artist”). Then you can right click your files loaded into Picard and select Run script → “Remove Ft. from artist”

See also my comment here:

1 Like