question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Tags present in native but not in common in mp3 with ID3v2.3 + ID3v1.1

See original GitHub issue

Hello,

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:closed
  • Created 5 years ago
  • Comments:9 (9 by maintainers)

github_iconTop GitHub Comments

1reaction
Borewitcommented, Apr 22, 2018

Proposed pull request included in: v0.10.1

Thanks addressing this @Aodev!

0reactions
Borewitcommented, Apr 7, 2018

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.

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found