-
-
Notifications
You must be signed in to change notification settings - Fork 93
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Field values containing slash character are split #1073
Comments
Can you provide a sample file @AdmiralToast? |
Sure thing! I also checked with flac (vorbis comment) file where it doesn't happen (i.e. everything is parsed as a single string).
I used some dummy sample file so I don't commit copyright infringement but the tags are set so you can easily reproduce. |
Duplicate of issue #52 The separation between artists decoded using '/' is in line with the specification: https://id3.org/id3v2.3.0#line-455 So "AC/DC" is an artist name you cannot specify without resulting in this kind of misinterpretations. If you use the ID3v2.4 instead, you no longer have that constraint. |
Thanks for the reply, especially the specs :) |
Bug description
Could reproduce with genre and track artist fields.
If a field value contains a slash, without trailing spaces, the string is split.
Especially troublesome with track artists (e.g. "AC/DC")
Expected behavior
No value should be split by slash character
The text was updated successfully, but these errors were encountered: