Tags present in native but not in common in mp3 with ID3v2.3 + ID3v1.1
See original GitHub issueHello,
Maybe I misunderstand the native / common expected output. But switching from musicmetadata
to music-metadata
it seems that the mp3’s that have ID3v2.3 + ID3v1.1 don’t get ID3v1.1 tags copied in “common”.
Here is an output of a file I am parsing: I expect “common” to be populated with the “native” tags of ID3v1.1. Am I wrong or is it a bug?
{
"format": {
"lossless": false,
"dataformat": "mp3",
"bitrate": 320000,
"sampleRate": 44100,
"numberOfChannels": 2,
"encoder": "LAME 3.92UU",
"codecProfile": "CBR",
"numberOfSamples": 8614656,
"duration": 195.34367346938777,
"tagTypes": [
"ID3v2.3",
"ID3v1.1"
]
},
"native": {
"ID3v2.3": [],
"ID3v1.1": [
{
"id": "title",
"value": "On Blackest Wings"
},
{
"id": "artist",
"value": "Ancient"
},
{
"id": "album",
"value": "Proxima Centauri"
},
{
"id": "track",
"value": 10
},
{
"id": "year",
"value": "2001"
}
]
},
"common": {
"track": {
"no": null,
"of": null
},
"disk": {
"no": null,
"of": null
}
}
}
Issue Analytics
- State:
- Created 5 years ago
- Comments:9 (9 by maintainers)
Top Results From Across the Web
ID3 - Wikipedia
ID3 is a metadata container most often used in conjunction with the MP3 audio file format. It allows information such as the title,...
Read more >MP3 tags not showing correctly
ID3 tags, which are used for MP3 files, can be of one of several different versions. EasyTAG supports ID3v2.4, ID3v2.3 and ID3v1.1.
Read more >id3v2.3.0 - ID3.org
The ID3 tag described in this document is mainly targeted at files encoded with MPEG-1/2 layer I, MPEG-1/2 layer II, MPEG-1/2 layer III...
Read more >ID3 - Just Solve the File Format Problem
ID3, or ID3 tag, is a metadata format, mainly used in MP3 audio files. It stores information such as the song title, artist,...
Read more >ID3 Tags and Playlists: The Virtual Database - MP3 - O'Reilly
Unlike ID3v1, ID3v2 imposes no arbitrary limitations on the amount of storage space available for meta-data, which means there's plenty of space for...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Proposed pull request included in: v0.10.1
Thanks addressing this @Aodev!
I didn’t notice you pull request yet, I guess you figured out already. Nice job, I’ll have closer look within a few days.