Questions tagged [id3v2]

ID3v2 is the second version of the ID3 metadata container specification. It is largely unrelated to ID3v1.

ID3v2 is the second version of the ID3 metadata container specification. It is largely unrelated to ID3v1.

More details at https://en.wikipedia.org/wiki/ID3#ID3v2

116 questions
0
votes
0 answers

ID3 tag editor with support for STDIN

Does anyone know a CLI ID3 tag editor that accepts tags from standard input? I'm thinking something like massren but for ID3 editing.
Milad
  • 4,901
  • 5
  • 32
  • 43
0
votes
3 answers

how do I get necessary values of header of ID3v2?

I'm trying to read header of ID3V2 of mp3 files. I can get/print ID3 and want to print out "version" and "subversion" which is type char, but I can't get what i need. here is code: } ..... fseek(file,0,SEEK_SET); fread(&tag.TAG, 1,…
andrey
  • 671
  • 1
  • 9
  • 20
0
votes
1 answer

Mutagen: Save ID3 tag to variable

I'm trying to create an ID3 tag and save it to a variable, rather than outputting it to a file. Is there any way to do this? This works for saving, but I can't find a way to simply save the raw bytes in a variable, without having to write out a file…
Andrew
  • 107
  • 8
0
votes
1 answer

Where is the ID3v2 documentation?

I'm looking for the ID3v2 documentation/norm. The official site id3.org seems to be unreachable. Is this specification still used ? (I'm wondering this because of the "downness" of the official website)
Yaeghs
  • 1
0
votes
1 answer

ID3v2.3: ETCO frame Event format clarification

According to the informal standard, an ETCO frame is: the frame header (ten bytes), followed by a Time stamp format (one byte). This is then followed by a series of key events of the form Type of event (one byte) Time stamp (five bytes per…
Ricardo Iglesias
  • 595
  • 2
  • 6
  • 16
0
votes
0 answers

Unable to set thumbnail image to mp3 file using ffmpeg sending it's output to console (ffmpeg pipe:1)

I need to add thumbnails (album art) to mp3 (and other) files programmatically (using python) and save ffmpeg output in memory (to be able to send resulting bytes to another process). Pay attention to '-f', 'mp3', 'pipe:1' in last example please.…
remort
  • 304
  • 3
  • 9
0
votes
1 answer

How to automatically create wordpress posts for each mp3 uploaded?

I have a wordpress site, and its about media sharing. I have uploaded mp3 files as albums and created a post for each album. But I want to create individual post for each mp3 files uploaded automatically. I have already tried mp3-to-post plugin, but…
brvnbld
  • 1
  • 1
  • 8
0
votes
1 answer

i can't read info from ID3 tags in uwp App

I have a c# UWP app. For an add break i need to read ID3 tags for DAI. I am registering for timeMetadataTracksChanged event and then registering for CueEntered event. These are both firing correctly and i can read the id3 tag header but not the rest…
user3057416
  • 105
  • 3
  • 11
0
votes
0 answers

How can I get the ISRC and UPC code from an audio file with python mutagen

I have a music file (bought on amazon). With this service https://www.get-metadata.com I figured out, that there is a upc and isrc code somehow in the file. The data is in this tag "Id3V2 Priv.www.amazon.com" and inside a xml. My problem is, that i…
vkuzma
  • 130
  • 11
0
votes
0 answers

How to build and Install TAGLIB in Codeblocks

I am struggling to create a program which embeds song lyrics in *.mp3 files using C++ programming for my ongoing project. After searching, I found a library named "TAGLIB" that can process ID3v2.3 standard metadata. According to the LIBTAG…
0
votes
1 answer

ID3v2 tag issue with APIC in C#/.NET

I'm writing my own ID3v2 tag reader, but I seem to be having an issue with the APIC tag. Whenever it reads it, it'll say it's 2,038,335 bytes big when it's really 511,281 bytes big. I have no idea as to why and I have a feeling it's something to do…
Kyu Vulpes
  • 79
  • 11
0
votes
3 answers

Parsing ID3V2 Frames in C

I have been attempting to retrieve ID3V2 Tag Frames by parsing through the mp3 file and retrieving each frame's size. So far I have had no luck. I have effectively allocated memory to a buffer to aid in reading the file and have been successful…
0
votes
1 answer

System.NotImplementedException: 'ID3v2 Version 2 is not supported.'

hope all is well. I am getting the error below while trying to obtain the meta tags from an MP3 file on Visual Studio within a C# form application. Any help is appreciated. Thanks in advance. System.NotImplementedException: 'ID3v2 Version 2 is…
Antoine L
  • 3
  • 3
0
votes
1 answer

TagLib - Getting GEOB Content

Using TagLib::File::properties(), some common tags such as GEOB are ignored though they are within IDv2.3 spec. My question is, when using TagLib::File, how can you get GEOB data as well as it's content formatted for it's mime type? For this…
Stoyvo
  • 75
  • 6
0
votes
1 answer

TagLib: How to disable creating TDAT TIME TYER tags when setting TDRC

I am trying to use TagLib# for sorting some of the tags in my MP3s, as my car audio has problems with content of some tags (irrelevant for showing). Surely i want just sort the tags, not generate new ones or replace existing. In ideal case only…
Vasilich
  • 83
  • 7