swingmusic icon indicating copy to clipboard operation
swingmusic copied to clipboard

Tags not splitting when processed with Picard

Open sortedcord opened this issue 11 months ago • 6 comments

Whenever there are multiple artists present in the artist tag of any track:

image

Swing only ends up taking the first entry of the artists:

image

But when I change it to use comma instead of the semi-colon, swing does take all the entries:

image

image

This is not just limited to artists, but also happens with the genre tag as well... I have also made sure separators setting has all , ; /

sortedcord avatar Feb 25 '24 01:02 sortedcord

I tried to look into this more, and found this to be an issue with Musicbrainz Picard and it's tagging system not working with swing apparently? I'll continue dig into this and share my findings.

sortedcord avatar Feb 25 '24 03:02 sortedcord

@sortedcord

Maybe be a problem with Picard or not, can you DM me this specific file on Telegram for reproduction? It might also be a problem with the TinyTag library that we use to read tags. I can try to figure that out with a sample.

cwilvx avatar Feb 25 '24 03:02 cwilvx

From what I know is that there are 2 ways of storing multiple artists in ID3:

1) One value, separated by delimeters:

image

I believe this is what the swing's tagging system was designed for and it does work as intended.

2) Multiple Values (without delimiters):

image

This is picard and other prominent (desktop) music taggers handle multiple artists. The multiple values are not parsed by swing and only the first value is read...

sortedcord avatar Feb 25 '24 03:02 sortedcord

1. Willow Tree.zip Here is the file that has the artists formatted in the second way.

sortedcord avatar Feb 25 '24 03:02 sortedcord

It might also be a problem with the TinyTag library that we use to read tags. I can try to figure that out with a sample.

Coincidentally, I've added support for reading multiple artists in tinytag the other day (will be available in the 2.0.0 release). Multiple artists are stored in the 'artist' attribute, separated with a null character (\x00).

mathiascode avatar Feb 29 '24 12:02 mathiascode

Hello @mathiascode

Thank you for the comment on this issue. I'll wait for the new release and test with it.

I can't thank you enough for your work on TinyTag, great software. I absolutely love it. Thanks a lot.

cwilvx avatar Feb 29 '24 14:02 cwilvx