How to move performer data to artist data

How to move performer data to artist data.
I don’t know if this would be done with script or another way

Can you be a bit more specific on what exactly you want to achieve?

Depending on what you want something like this might do it:

$set(artist,$if2($performer(),%artist%))

This would overwrite the artist script with all the performers, unless performers is empty, in this case it would keep the artist tag value. Or maybe you want to append the performers to the artist:

$set(_performers,$performer())
$set(artist,%artist%$if(%_performers%,\, %_performers%))

This would set the artist tag to the artist name plus the list of performers, separated by a comma.

1 Like