Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: Tagging: Move "feat. artist" from %artist% to %title% (Read 3694 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

Tagging: Move "feat. artist" from %artist% to %title%

Hi,
I use the musicbrainz tagger to tag my files and want to move all "feat. artist" from the %artist% tag to the %title% tag since it causes a lot of problems with my phone where I start getting multiple artist entries. Does anyone have suggestion on how to do this?
TY

Tagging: Move "feat. artist" from %artist% to %title%

Reply #1
there might be a more elegant solution by using masstagger, but that's the way i do such things:

properties > tools > automatically fill values...
source = %artist%
pattern = %artist% feat. %feat%

and then
source = %title% feat. %feat%
pattern = %tittle%

Tagging: Move "feat. artist" from %artist% to %title%

Reply #2
Anyone know how I can do this using masstagger?


Tagging: Move "feat. artist" from %artist% to %title%

Reply #4
Split field by separator from %artist% using the separator “feat.” to a new field such as %feat%.

Format value from other fields: format %title% as
Code: [Select]
%title%[ '['feat. %feat%']']



The problem I am having is removing the artist name from the temp FEAT tag

So originally

ARTIST=Armin van Buuren feat. Aruna

after split fields by separator

FEAT=Armin van Buuren; Aruna

How would I remove "Armin van Buuren" from FEAT?

Thanks

Tagging: Move "feat. artist" from %artist% to %title%

Reply #5
How would I remove "Armin van Buuren" from FEAT?

Masstager:

- Add
- Format value from other fields...
- Destination field name: FEAT
- Formatting pattern: $meta(feat,1)
This is HA. Not the Jerry Springer Show.

Tagging: Move "feat. artist" from %artist% to %title%

Reply #6
Oh, good point, so thanks for the necessary improvement. I didn’t consider the fact that the sub-string prior to the separator would also be included.

This reminds me of how confused I get when programming strings in C…but, to be fair to myself, that might be mostly attributable to string.h.

 

Tagging: Move "feat. artist" from %artist% to %title%

Reply #7
awesome, thanks guys