I understand that the MP3 file format essentially consists of two segments, id3 metadata+audio frames. How can I read in binary form, all of the id3 segment and all of the audio frames as two binary blobs? I'm looking to simply perform a hash calculation on the metadata and the audio as two separate units in a file. How can I determine where the "split point" is in the file?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

From the ID3 tag specification:

+-----------------------------+
|      Header (10 bytes)      |
+-----------------------------+
|       Extended Header       |
| (variable length, OPTIONAL) |
+-----------------------------+
|   Frames (variable length)  |
+-----------------------------+
|           Padding           |
| (variable length, OPTIONAL) |
+-----------------------------+
| Footer (10 bytes, OPTIONAL) |
+-----------------------------+

Note that there are several ID3 tag versions out there.

Specification: http://www.id3.org/id3v2.4.0-structure

link|improve this answer
So are there multiple ID3 tag chunks in an MP3 file or just one with multiple frames? – TK Kocheran May 16 '11 at 21:11
One chunk with multiple frames according to en.wikipedia.org – namsral May 16 '11 at 22:29
Thanks. So the bit in the header specifying the length tells me how big the entire chunk is? Thanks for all of your help. – TK Kocheran May 16 '11 at 22:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.