welcome: please sign in
location: mp3Frame

How is MP3 built?


Most people with a little knowledge in MP3 files know that the sound is divided into smaller parts and compressed with a psycoacoustic model. This smaller pieces of the audio is then put into something called 'frames', which is a little datablock with a header. I'll focus on that header in this text.

The header is 4 bytes, 32 bits, big and begins with something called sync. This sync is, at least according to the MPEG standard, 12 set bits in a row. Some add-on standards made later uses 11 set bits and one cleared bit. The sync is directly followed by a ID bit, indicating if the file is a MPEG-1 och MPEG-2 file. 0=MPEG-2 and 1=MPEG-1

mp3frame_blocks.gif

The layer is defined with the two layers bits. They are oddly defined as

0 0

Not defined

0 1

Layer III

1 0

Layer II

1 1

Layer I

With this information and the information in the bitrate field we can determine the bitrate of the audio (in kbit/s) according to this table.

Bitrate
value

MPEG-1,
layer I

MPEG-1,
layer II

MPEG-1,
layer III

MPEG-2,
layer I

MPEG-2,
layer II

MPEG-2,
layer III

0 0 0 0

0 0 0 1

32

32

32

32

32

8

0 0 1 0

64

48

40

64

48

16

0 0 1 1

96

56

48

96

56

24

0 1 0 0

128

64

56

128

64

32

0 1 0 1

160

80

64

160

80

64

0 1 1 0

192

96

80

192

96

80

0 1 1 1

224

112

96

224

112

56

1 0 0 0

256

128

112

256

128

64

1 0 0 1

288

160

128

288

160

128

1 0 1 0

320

192

160

320

192

160

1 0 1 1

352

224

192

352

224

112

1 1 0 0

384

256

224

384

256

128

1 1 0 1

416

320

256

416

320

256

1 1 1 0

448

384

320

448

384

320

1 1 1 1

The sample rate is described in the frequency field. These values is dependent of which MPEG standard is used according to the following table.

Frequency
Value

MPEG-1

MPEG-2

0 0

44100 Hz

22050 Hz

0 1

48000 Hz

24000 Hz

1 0

32000 Hz

16000 Hz

1 1

Three bits is not needed in the decoding process at all. These are the copyright bit, original home bit and the private bit. The copyright has the same meaning as the copyright bit on CDs and DAT tapes, i.e. telling that it is illegal to copy the contents if the bit is set. The original home bit indicates, if set, that the frame is located on its original media. No one seems to know what the privat bit is good for.

If the protection bit is NOT set then the frame header is followed by a 16 bit checksum, inserted before the audio data. If the padding bit is set then the frame is padded with an extra byte. Knowing this the size of the complete frame can be calculated with the following formula

                 FrameSize = 144 * BitRate / SampleRate
                   when the padding bit is cleared and
                 FrameSize = (144 * BitRate / SampleRate) + 1
                   when the padding bit is set.

The !frameSize is of course an integer. If for an example BitRate=128000, SampleRate=44100 and the padding bit is cleared, then the FrameSize = 144 * 128000 / 44100 = 417

The mode field is used to tell which sort of stereo/mono encoding that has been used. The purpose of the mode extension field is different for different layers, but I really don't know exactly what it's for.

Mode value

mode

0 0

Stereo

0 1

Joint stereo

1 0

Dual channel

1 1

Mono

The last field is the emphasis field. It is used to sort of 're-equalize' the sound after a Dolby-like noise supression. This is not very used and will probably never be. The following noise supression model is used

Emphasis value

Emphasis method

0 0

none

0 1

50/15ms

1 0

1 1

CCITT j.17

mp3Frame (last edited 2012-10-08 22:15:39 by localhost)

Copyright © 1998-2024 by their respective owners