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
17
votes
3 answers

How to use the Java MP3 ID3 Tag Library to retrieve album artwork

I'm making an mp3 player. I'm using the Java mp3 id3 tag library. I understand that album artwork is encoded as a ID3v2 tag. I can access the ID3v2 tag of a mp3 file however I cannot get the artwork! None of the methods in the AbstractID3v2 class,…
Adeeb
  • 1,271
  • 3
  • 16
  • 33
11
votes
3 answers

Get Attributes listed in the "Details" Tab with Powershell

I'm trying to retrieve some extended file attributes (mp3 files to be precise) listed in the "Details" tab, section "Media" with PowerShell. There are additional attributes like bitrate, genre, album, etc. Sadly Get-ItemProperty -Path $pathtofile |…
ShellOfPower
  • 113
  • 1
  • 1
  • 4
6
votes
2 answers

Mutagen's save() does not set or change cover art for MP3 files

I am trying to use Mutagen for changing ID3 (version 2.3) cover art for a bunch of MP3 files in the following way: from mutagen.mp3 import MP3 from mutagen.id3 import APIC file = MP3(filename) with open('Label.jpg', 'rb') as albumart: …
user4028648
5
votes
0 answers

Parsed timed_id3 values from HLS stream

How do I parse timed_id3 values taken from a HLS stream chunk? Twitch stream chunks contain info like encoding time in a 3rd data stream that ffprobe identifies as timed_id3, the extracted data…
Ecko
  • 1,185
  • 1
  • 9
  • 11
5
votes
1 answer

ID3 Album Art / Cover Tag Field

What is the field name for covers / album arts in id3 tags? For eg. : Title : title - TT2 - TIT2 Artist : artist - TP1 - TPE1 Album : album - TAL - TALB Cover: ? - ? - ? I hope somebody can help me... Thx in advance!
Marc Becker
  • 523
  • 2
  • 7
  • 18
5
votes
3 answers

How can I stop mutagen automatically updating the ID3 version?

When I tried to embed album art in an MP3, mutagen updated the ID3 tag to version 2.4 - which I don't want, because in ID3v2.4 my cell phone (which runs Windows Phone 8) and my computer can't recognize the tags. Apparently, simply changing the…
prehawk
  • 195
  • 12
4
votes
5 answers

Linux script to transfer (ID3) tags from FLAC to MP3

For my media server, I am looking for ways to transfer tags from my FLAC files to MP3. In a bash script, I can extract tags using metaflac to local vars, but when tagging mp3 with id3v2, I seem to lose national characters (guess it must be…
TheRoadrunner
  • 1,281
  • 14
  • 34
4
votes
2 answers

Can't give metadata of comment to MP3 file using ffmpeg

I want to covert an AAC audio file to MP3 and add a comment in the metadata of the MP3 file using ffmpeg. The -metadata comment option doesn't work and ffmpeg doesn't return an error. The complete command I'm running is ffmpeg -i "test.aac" -ab 128k…
Juco
  • 43
  • 4
4
votes
1 answer

How to get and print mp3 Popularimeter frame with golang id3-go library

I would like to read the Popularimeter frame from a file with id3-go. This is how the frame looks like when printing with mutagen-inspect: $ mutagen-inspect samples/with_popm.mp3 | grep POPM POPM=traktor@native-instruments.de=0 255/255 I would like…
Wolkenarchitekt
  • 20,170
  • 29
  • 111
  • 174
4
votes
3 answers

Java/JAudiotagger: Mp3 wrong ID3 tag size

I'm building an mp3 tagging application using the JAudiotagger library. My application reads the mp3 metadata fine, and can write the metadata fine too, except for the artworks. So my problem is as follows: When I add a number of artworks in the mp3…
Bill Tsagkas
  • 530
  • 1
  • 4
  • 15
4
votes
1 answer

Set Lyrics in MP3 ID3v2 Tag

I want to write lyrics to an mp3 in an Android application.I have found a java library for reading mp3 files and reading/manipulating the ID3 tags (ID3v1 and ID3v2.2 through ID3v2.4), named mp3agic. I modified mp3agic to write the lyric tag of the…
juicebyjustin
  • 434
  • 7
  • 16
3
votes
2 answers

override metadata of audio file in windows phone 7

I would love to have a fix metadata function for my music player, but as I know there is no library that could do such. However I found that some C# application could accomplish this. Example I need some advice and probably a good sources to get…
Nghia Nguyen
  • 2,585
  • 4
  • 25
  • 38
3
votes
0 answers

Reading/writing Unicode to ID3v2 using jid3lib

I'm trying to write an application using jid3lib and have pretty much everything working in terms of reading/writing id3v1 but for v2 unicode I can't figure out the best course of action for converting the unicode to a usable string and then…
az1d
  • 91
  • 7
3
votes
2 answers

How to add SYLT(synced lyrics) tag on ID3v2 mp3 file using python?

I want to add synced lyrics from vtt on my mp3 file using python. I tried using the mutagen module but it didn't work as intended. from mutagen.id3 import ID3, USLT, SLT import sys import webvtt lyrics = webvtt.read(sys.argv[2]) lyri = [] lyr =…
doohee
  • 33
  • 3
3
votes
1 answer

Why Audio files tagged with itunes player have COMMENT:ITUNSMPB and COMMENT:ITUNNORM keys values are not readable format?

I am extracting embedded ID3 tags from an audio file that has keys.I am using pytaglib and extracted information looks as below: { u'ALBUM': [u'Instrumental Bhajan'], u'INITIALKEY': [u'C'], u'COPYRIGHT': [u'Radio'], u'ARTIST': [u'Radio], …
Varun Singh
  • 444
  • 6
  • 21
1
2 3 4 5 6 7 8