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
3
votes
1 answer

Jaudiotagger ID3 TAG for android - can set artwork but cannot set other fields

I'm relatively new to Java programming. Here i'm trying to use Jaudiotagger library for altering/creating new ID3 tag for mp3s without one in one of my android project. However, I really cannot set to made the library work correctly. That is, For…
spaceman12
  • 1,039
  • 11
  • 18
3
votes
2 answers

ID3v2 Specification

Based on http://id3.org/id3v2.3.0 specification, the layout of the frame header is: Frame ID $xx xx xx xx (four characters) Size $xx xx xx xx Flags $xx xx But same page just couple of lines below that says that frames that…
Ωmega
  • 42,614
  • 34
  • 134
  • 203
3
votes
2 answers

id3 tags editing with vim

Is there any way I can use gvim or vim to edit id3 tags on already ripped .flac files? Also, maybe somebody know a way to integrate gvim tag editing with rubyripper? Also, I'd like edit id3 tags on flac and mp3 files. A command line tool which could…
aignas
  • 1,044
  • 12
  • 19
2
votes
2 answers

Extract lyrics from an MP3

Could someone explain how to extract the lyrics from an mp3 file?I tried but I can't get any documents for this purpose.Just like the album art, how can we extract it in to a text file? Is it possible in Java?
user1089146
  • 127
  • 2
  • 7
2
votes
1 answer

Regular expression against the ID3v2 unsynchronisation scheme in mp3 file?

I'm creating piece of code to check mp3 files on my server and get result do some of them have false sync or not. In short, I'm loading those files in PHP using fread() function and getting stream in variable. After splitting that stream to get…
Wh1T3h4Ck5
  • 8,399
  • 9
  • 59
  • 79
2
votes
1 answer

id3v2 - cli unable to add image

Using id3v2 to add information to MP3 files, but I don't seem to be able to add the image using the --APIC flag, it doesn't fail but it doesn't add it either. Info: running Ubuntu 14.04LTS & id3v2 (installed via apt-get); id3v2 0.1.12 Uses…
mchaffe
  • 597
  • 1
  • 4
  • 14
2
votes
1 answer

Write / change raw ID3 tags?

I have an MP3 file: B{ 255 251 144 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 73 110 102 111 0 0 0 15 0 0 30 161 0 50 3 66 0 3 5 8 10 13 15 18 20 24 26 28 31 33 36 38 41 43 47 49 52 54 56 59 61 64 66 69 72 …
cat
  • 3,888
  • 5
  • 32
  • 61
2
votes
2 answers

installing PECL id3 extension on Ubuntu

I have been trying this from a week now still couldnt find an answer for this when i try this sudo pecl install id3 this error happens downloading id3-0.2.tgz ... Starting to download id3-0.2.tgz (20,693 bytes) .....done: 20,693 bytes 4 source…
maniteja
  • 687
  • 2
  • 16
  • 32
2
votes
1 answer

How to stop converting known genre to number in id3v2 tag?

I'm on VB.NET 2012 Express, using the mono/taglib-sharp 2.0 library (Win7). If I run this working code snippet to save 3 genres into the id3v2 tag of an existing mp3 track: Dim ThreeGenresInStringArray() As String = {"Folk rock", "Bluegrass", "Indie…
PeterCo
  • 910
  • 2
  • 20
  • 36
2
votes
1 answer

How to read Id3v2 tag

static void Main(string[] args) { FileStream fs = File.Open(@"C:\Skrillex - Rock n' Roll (Will Take You to the Mountain).mp3", FileMode.Open); BinaryReader br = new BinaryReader(fs); byte[] tag = new byte[3]; byte[] version = new…
blurfx
  • 1,270
  • 11
  • 22
2
votes
4 answers

how to decode ID3V2 tag fetched using jid3lib-0.5.4

I am trying to find ID3V2 tags from MP3 file using jid3lib in Java. But I am getting messy strings. Here is my code: import org.farng.mp3.MP3File; import org.farng.mp3.id3.AbstractID3v2; public class NewClass { public static void main(String []…
nullptr
  • 3,320
  • 7
  • 35
  • 68
2
votes
2 answers

correct coding of ID3 v2.3 frame size field for GEOB tag

I have some confusion regarding how the frame size bytes should be coded/decoded for ID3 v2.3.0. According to the (informal) ID3 v2.3.0 specification, the size of each frame should be coded into 4 bytes, where the most significant bit of each byte…
Jim
  • 161
  • 2
  • 10
2
votes
1 answer

How to wirte id3v2.3 with taglib

When i use the taglib to write id3v2 tag to mp3,the taglib write id3v2.4 as default. But on windows,the media player and explorer can not parse it. How could i solve this? code like this: TagLib::MPEG::File* mpegfile//i've already new the…
One Piece
  • 21
  • 2
1
vote
1 answer

FFMPEG : How to transcode Attached Picture (APIC) from source mp3 file to destination mp3 file using FFMPEG?

I have input file as 02.mp3. I want to change it to mp3 file with some bit rate. While doing so, I want to preserve all the metadata plus the APIC, attached picture corresponding to image should also be transfered to the destionation file. I am…
cksharma
  • 313
  • 2
  • 11
1
vote
2 answers

Taglib sharp saving ONLY ID3v2

I'm new using TagLib sharp. I'm trying to save ONLY an specific version of the tag inside the file. Everytime I save the tag both ID3v1 and ID3v2 get created. Is there a way to stop this from happening? Can I choose which one I want to save. The…