-
Notifications
You must be signed in to change notification settings - Fork 126
Open
Description
Describe the bug
When reading FLAC files with jsmediatags, the DISCNUMBER tag is not returned, even though it is present and readable by other taggers (itt is even shown on the file properties in Windows).
Expected behavior
DISCNUMBER should be available in the parsed tags object, similar to TRACKNUMBER.
Actual behavior
The tag is missing from the result when parsing FLAC files.
Steps to reproduce
- Use a FLAC file that contains a
DISCNUMBERtag (e.g. Vorbis commentDISCNUMBER=1). This can be done even in the Windows explorer (right click, -> properties) - Parse it with jsmediatags
- Observe that
DISCNUMBERis not present in the returned tags
Code example
jsmediatags.read(file, {
onSuccess: ({ tags }) => {
console.log(tags);
},
onError: console.error
});Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels