Problem with Non-ASCII-Equivalents plugin and tagging script

Maybe someone has a solution for this? So I adjusted the Non-ASCII plugin to be also applied to the “albumartist” tag. part of my tagging script however is:

$setmulti(albumartist,%_albumartists%)

due to the execution order the changes from the plugin are reverted. the only thing that came to my mind was to incorporate the plugin logic in my tagging script, which of course would make it rather large.

I also tried to apply the plugin to “_albumartists” but it seems a plugin can’t access non-standard tags? any ideas?

When in python you refer to a variable which starts with an underscore (when you use it in a Picard script), you need to replace the underscore with a twiddle “~”.

1 Like

awesome, that’s it. thank you, this is really appreciated!