MPEG-4

From VideoLAN Wiki
Jump to navigation Jump to search

MPEG-4 is a form of MPEG encoding. It is a flexible audio and video compression format. The format describes audio and video compression, with a container format for streaming across networks and saving to disk. It also contains optional extra features, including DRM and subtitles. These extra features are only included in software if needed. MPEG-4 can provide better quality than MPEG-2 at low bitrates.

Here is an example of how to transcode an AVI into an MPEG-4 video from the command prompt

% vlc file.avi --sout='#transcode{vcodec=mp4v,acodec=mp4a}:std{access=file,mux=mp4,dst=file.m4v}'

MPEG-4 audio is an advanced, complicated audio format. It includes AAC for high bitrates, multilingual tracks, text-to-speech modes for very low bitrates, the ability to synthesize instrumental sounds (similar to MIDI), and more. See also the MPEG-4 Audio FAQ.

Codecs

mp4a
This is an audio codec. The name to use at the command line is mp4a, but you can also use m4a.
This codec can be used inside the MPEG-4 containers.
This codec is from the ffmpeg module.
mp4v
This is a video codec. The name to use at the command line is mp4v, but you can also use m4v.
This codec can be used inside the MPEG-4 containers.
This codec is from the ffmpeg module.

MPEG-4 specifies a range of codecs

The fourccs of MPEG-4 codecs are:

  • DivX Codecs
    • DIV1, div1, DIVX, divx, DX50, dx50, XVID, XviD, xvid
  • FFMPEG MPEG-4
    • FMP4, fmp4
  • 3IV2, 3iv2
  • BLZ0
  • DXGM
  • HDX4, hdx4
  • M4S2, m4s2
  • MP4S, mp4s
  • MP4V, mp4v
  • RMP4
  • SEDG
  • SMP4
  • UMP4
  • WV1F
  • XVIX

Container

MP4 (.mp4) is the global file extension for the official container format defined in the MPEG-4 standard (ISO 14496-14).

  • .mp4: the only official extension; used for both audio and video files (and advanced content)
  • .3gp: this extension is used for the 3gp format, derived from the ISO standard
  • .m4a: introduced by Apple for aac/alac audio-only files.

NOTE: .m4a files can safely be renamed to .mp4—but the distinction between audio (m4a) and video (mp4) may be useful if you are going to share files, or if you tend to forget what files you have.

For complete details on MP4, see the following link:

.mp4 audio

.m4a is the file extension attached to names of files containing MPEG-4 Audio. Generally, MPEG-4 files are have the .mp4 file extension.

The .m4a file extension has been popularized by Apple, which started using the .m4a file extension in their iTunes software and iPod music players to distinguish between MPEG-4 Video and Audio files. Currently, most software that supports MPEG-4 Audio also supports the .m4a extension. The most common type of .m4a files available are those using the AAC (Advanced Audio Coding) audio format, but other formats such as Apple Lossless and even mp3 files may be put inside a .m4a container file. You can normally safely rename the file extension of an .mp4 file containing only audio to .m4a or vice versa to get the file to properly play in your favorite audio player.

Protected MPEG-4 Audio

When these files have digital rights management (DRM) restrictions applied to them, their extension are often changed to .m4p, the p standing for protected. Music files purchased from the iTunes Music Store, for example, have this extension.

Audiobooks

When they contain audiobook data, MPEG-4 files have a .m4b extension.

Container

mp4
VLC can encode and decode this container.
The module name to use at the command line is mp4, but you can also use mov, or 3gp.

Accepted video codecs

Accepted audio codecs

Accepted subtitle codec

Decoding libraries

In addition to FFMPEG, there is MPEG4IP that can decode MPEG-4 streams.

Source code