RealMedia: Difference between revisions

From MultimediaWiki
Jump to navigation Jump to search
(")
(add .RMP chuck type description)
 
(22 intermediate revisions by 11 users not shown)
Line 1: Line 1:
* Extensions: rm, ra, rmvb
* Extensions: rm, ra, rmvb, rmhd
* Company: [[Real]]
* Company: [[Real]]
* Specifications: https://common.helixcommunity.org/2003/HCS_SDK_r5/htmfiles/rmff.htm


Multimedia container format developed by [[Real]] and used almost exclusively for codecs developed by Real.
Multimedia container format developed by [[Real]] and used almost exclusively for codecs developed by [[Real]].


The old .ra files are just for audio.  The newer RealMedia (.rm) files are for audio and video.
The old .ra files are just for audio.  The newer RealMedia (.rm) and RealMedia HD (.rmhd) files are for audio and video.


== RA Format ==
== RA Format ==
Line 16: Line 17:
=== RealAudio 1.0 file  (.ra version 3) ===
=== RealAudio 1.0 file  (.ra version 3) ===


This is from the very first version of RealAudio (1995).  These files can only contain [[RealAudio 14.4|8kbps VSELP]] audio data.  A FourCC (lpcJ) may be present, but it is ignored.  Byte order is big-endian.
This is from the very first version of RealAudio (1995).  These files can only contain [[RealAudio 14.4|8kbps VSELP]] audio data.  A [[FourCC]] (lpcJ) may be present, but it is ignored.  Byte order is big-endian.


  byte[4]  Header signature ('.', 'r', 'a', 0xfd)
  byte[4]  Header signature ('.', 'r', 'a', 0xfd)
  word    Version (always 3)
  word    Version (always 3)
  word    Header size - 7
  word    Header size, not including first 8 bytes
  byte[10] Unknown
  byte[10] Unknown
  dword    Data size
  dword    Data size
Line 33: Line 34:
  byte    Unknown *
  byte    Unknown *
  byte    Fourcc string length (always 4) *
  byte    Fourcc string length (always 4) *
  byte[]  Fourcc string (always "lpcJ") *
  byte[]  Fourcc string (always "lpcJ") *
   Audio data
   Audio data


Notes:
Notes:
* Fields marked with * may be missing. Based on the only known sample with no FourCC, it's assumed that all these fields are either present or missing.  To determine if they are missing, check the header size (bytes 6-7).
* Fields marked with * may be missing. Based on the only known sample with no [[FourCC]], it's assumed that all these fields are either present or missing.  To determine if they are missing, check the header size (bytes 6-7).
* The informative fields (title, author, copyright and comment) can have zero length.
* The informative fields (title, author, copyright and comment) can have zero length.


=== RealAudio 2.0 file (.ra version 4) ===
=== RealAudio 2.0 file (.ra version 4) ===


This is second version of the RealAudio file format.  It is distinguished from the above by the value in byte 5 (=0x04).  This type of file must contain a valid FourCC to identify the audio codec.
This is second version of the RealAudio file format.  It is distinguished from the above by the value in byte 5 (=0x04).  This type of file must contain a valid [[FourCC]] to identify the audio codec.


Possible fourCC values are [[RealAudio 28.8|28_8]], [[RealAudio_dnet|dnet]] and [[RealAudio_sipr|sipr]].
Possible [[FourCC]] values are [[RealAudio 28.8|28_8]], [[RealAudio_dnet|dnet]] and [[RealAudio_sipr|sipr]].


  byte[4]  Header signature ('.', 'r', 'a', 0xfd)
  byte[4]  Header signature ('.', 'r', 'a', 0xfd)
  word    Version (always 4)
  word    Version (always 4)
  word    Unused (always 0)
  word    Unused (always 0)
  byte[4]  ra4 signature (always ".ra4")
  byte[4]  ra4 signature (always ".ra4")
dword    Data size - 0x27
word    Version2 (always equal to version)
dword    Header size - 16
word    Codec flavor
dword    Coded frame size
byte[12] Unknown
word    Sub packet h
word    Frame size
word    Subpacket size
word    Unknown
word    Samplerate
word    Unknown
word    Sample size
word    Channels
byte    Interleaver ID string length (always 4)
byte[]  Interleaver ID string
byte    FourCC string length (always 4)
byte[]  FourCC string
byte[3]  Unknown
byte    Title string length
byte[]  Title string
byte    Author string length
byte[]  Author string
byte    Copyright string length
byte[]  Copyright string
byte    Comment string length
byte[]  Comment string
  Audio Data
 
Notes:
* The 0x27 in data size is the size of the fixed-length part of the header (up to channels).
* The informative fields (title, author, copyright and comment) can have zero length.
 
=== .ra version 5 ===
 
While the .ra header can contain version 5, there are no known RealAudio files with this format, and it's not known if they really exist.
 
== RealMedia Format ==
 
This is the newer format which stores both audio and video.  All multi-byte numbers are stored in big-endian format.
 
A RealMedia file consists of a series of chunks. Each chunk has the following format:
 
dword  chunk type ([[FOURCC]])
dword  chunk size, including 8-byte preamble
word  chunk version
byte[] chunk payload
 
Real chunk types:
* .RMF: RealMedia file header (only one per file, must be the first chunk)
* PROP: File properties (only one per file)
* MDPR: Stream properties (one for each stream)
* CONT: Content description/metadata (typically one per file)
* DATA: File data
* INDX: File index (typically one per stream)
 
 
=== RealMedia file header (.RMF) ===
 
This must be the first chunk in a RealMedia file. Only one .RMF can be present in a file. The only useful information carried by .RMF is the number of headers.
 
A .RMF chunk has the following format
 
dword chunk type ('.RMF')
dword chunk size (typically 0x12)
word  chunk version (always 0, for every known file)
dword file version
dword number of headers
 
Notes:
* All known sample files have version equal to 0.
* There is a sample with chunk size = 0x10, in that case file version is a word. Note that the sample has chunk version = 0 like all other files.
 
 
=== File properties header (PROP) ===
 
This chunk contains some information about the general properties of a RealMedia file. Only one PROP chunk can be present in a file.
 
A PROP chunk has the following format
 
dword  Chunk type ('PROP')
dword  Chunk size (typically 0x32)
word  Chunk version (always 0, for every known file)
dword  Maximum bit rate
dword  Average bit rate
dword  Size of largest data packet
dword  Average size of data packet
dword  Number of data packets in the file
dword  File duration in ms
dword  Suggested number of ms to buffer before starting playback
dword  Offset of the first INDX chunk form the start of the file
dword  Offset of the first DATA chunk form the start of the file
word  Number of streams in the file
word  Flags (bitfield, see below)
 
Flags:
* bit 0: file can be saved on disk
* bit 1: PerfectPlay can be used (extra buffering)
* bit 2: the file is a live broadcast
 
 
=== Media properties header (MDPR) ===
 
This chunk contains information about the properties of a RealMedia stream. This header defines the type of a stream and the codec used. All codec-related data is in the type specific part of this header.
 
Many fields share the same meanings as the ones in PROP chunk, but in this case they are specific for one stream.
 
There is one MDPR chunk for every stream in the file.
 
A MDPR chunk has the following format
 
dword  Chunk type ('MDPR')
dword  Chunk size
word    Chunk version (always 0, for every known file)
word    Stream number
dword  Maximum bit rate
dword  Average bit rate
dword  Size of largest data packet
dword  Average size of data packet
dword  Stream start offset in ms
dword  Preroll in ms (to be subtracted from timestamps?)
dword  Stream duration in ms
byte    Size of stream description string
byte[]  Stream description string
byte    Size of stream mime type string
byte[]  Mime type string
dword  Size of type specific part of the header
byte[]  Type specific data, meaning and format depends on mime type
 
 
=== Content description header (CONT) ===
 
This chunk contains some text information (like title, author, ...) about the content of the file. This header has an informative purpose only and it's not needed to demux the file.
 
A CONT chunk has the following format
 
dword  Chunk type ('CONT')
dword  Chunk size
word    Chunk version (always 0, for every known file)
word    Title string length
byte[]  Title string
word    Author string length
byte[]  Author string
word    Copyright string length
byte[]  Copyright string
word    Comment string length
byte[]  Comment string
 
 
== Codecs ==
 
Codecs in RealMedia are identified by the following four character codes:
 
===== Audio =====
 
* [[RealAudio 14.4|lpcJ]] - RealAudio 1.0 (VSELP)
* [[RealAudio 28.8|28_8]] - RealAudio 2.0 (LD-CELP)
* [[RealAudio_dnet|dnet]] - AC3
* [[RealAudio_sipr|sipr]] - Sipro
* [[RealAudio_cook|cook]] - Cook
* [[RealAudio_atrc|atrc]] - ATRAC
* [[Real Lossless Codec|ralf]] - RealAudio Lossless Format
* [[RealAudio_raac|raac]] - LC-AAC
* [[RealAudio_racp|racp]] - HE-AAC
 
===== Video =====
 
* [[RealVideo|rv10]] - H.263
* [[RealVideo|rv13]] - H.263
* [[RealVideo|rv20]] - H.263+
* [[RealVideo|rv30]] - Unknown format
* [[RealVideo|rv40]] - Unknown format
 
[[Category: Container Formats]]
 
 
 
== RA Format ==
 
This is the old audio-only RealAudio file format.
A very similar structure is also used to describe audio streams in RM files.
 
The audio data part is just a stream of bytes with no structure.
There is no index in .ra files, but seeking is possible because the codecs are CBR.
 
=== RealAudio 1.0 file  (.ra version 3) ===
 
This is from the very first version of RealAudio (1995).  These files can only contain [[RealAudio 14.4|8kbps VSELP]] audio data.  A FourCC (lpcJ) may be present, but it is ignored.  Byte order is big-endian.
 
byte[4]  Header signature ('.', 'r', 'a', 0xfd)
word    Version (always 3)
word    Header size - 7
byte[10] Unknown
dword    Data size
byte    Title string length
byte[]  Title string
byte    Author string length
byte[]  Author string
byte    Copyright string length
byte[]  Copyright string
byte    Comment string length
byte[]  Comment string
byte    Unknown *
byte    Fourcc string length (always 4) *
byte[]  Fourcc string (always "lpcJ") *
  Audio data
 
Notes:
* Fields marked with * may be missing. Based on the only known sample with no FourCC, it's assumed that all these fields are either present or missing.  To determine if they are missing, check the header size (bytes 6-7).
* The informative fields (title, author, copyright and comment) can have zero length.
 
 
=== RealAudio 2.0 file (.ra version 4) ===
 
This is second version of the RealAudio file format.  It is distinguished from the above by the value in byte 5 (=0x04).  This type of file must contain a valid FourCC to identify the audio codec.
 
Possible fourCC values are [[RealAudio 28.8|28_8]], [[RealAudio_dnet|dnet]] and [[RealAudio_sipr|sipr]].
 
byte[4]  Header signature ('.', 'r', 'a', 0xfd)
word    Version (always 4)
word    Unused (always 0)
byte[4]  ra4 signature (always ".ra4")
dword    Data size - 0x27
word    Version2 (always equal to version)
dword    Header size - 16
word    Codec flavor
dword    Coded frame size
byte[12] Unknown
word    Sub packet h
word    Frame size
word    Subpacket size
word    Unknown
word    Samplerate
word    Unknown
word    Sample size
word    Channels
byte    Interleaver ID string length (always 4)
byte[]  Interleaver ID string
byte    FourCC string length (always 4)
byte[]  FourCC string
byte[3]  Unknown
byte    Title string length
byte[]  Title string
byte    Author string length
byte[]  Author string
byte    Copyright string length
byte[]  Copyright string
byte    Comment string length
byte[]  Comment string
  Audio Data
 
Notes:
* The 0x27 in data size is the size of the fixed-length part of the header (up to channels).
* The informative fields (title, author, copyright and comment) can have zero length.
 
=== .ra version 5 ===
 
While the .ra header can contain version 5, there are no known RealAudio files with this format, and it's not known if they really exist.
 
== RealMedia Format ==
 
This is the newer format which stores both audio and video.  All multi-byte numbers are stored in big-endian format.
 
A RealMedia file consists of a series of chunks. Each chunk has the following format:
 
dword  chunk type ([[FOURCC]])
dword  chunk size, including 8-byte preamble
word  chunk version
byte[] chunk payload
 
Real chunk types:
* .RMF: RealMedia file header (only one per file, must be the first chunk)
* PROP: File properties (only one per file)
* MDPR: Stream properties (one for each stream)
* CONT: Content description/metadata (typically one per file)
* DATA: File data
* INDX: File index (typically one per stream)
 
 
=== RealMedia file header (.RMF) ===
 
This must be the first chunk in a RealMedia file. Only one .RMF can be present in a file. The only useful information carried by .RMF is the number of headers.
 
A .RMF chunk has the following format
 
dword chunk type ('.RMF')
dword chunk size (typically 0x12)
word  chunk version (always 0, for every known file)
dword file version
dword number of headers
 
Notes:
* All known sample files have version equal to 0.
* There is a sample with chunk size = 0x10, in that case file version is a word. Note that the sample has chunk version = 0 like all other files.
 
 
=== File properties header (PROP) ===
 
This chunk contains some information about the general properties of a RealMedia file. Only one PROP chunk can be present in a file.
 
A PROP chunk has the following format
 
dword  Chunk type ('PROP')
dword  Chunk size (typically 0x32)
word  Chunk version (always 0, for every known file)
dword  Maximum bit rate
dword  Average bit rate
dword  Size of largest data packet
dword  Average size of data packet
dword  Number of data packets in the file
dword  File duration in ms
dword  Suggested number of ms to buffer before starting playback
dword  Offset of the first INDX chunk form the start of the file
dword  Offset of the first DATA chunk form the start of the file
word  Number of streams in the file
word  Flags (bitfield, see below)
 
Flags:
* bit 0: file can be saved on disk
* bit 1: PerfectPlay can be used (extra buffering)
* bit 2: the file is a live broadcast
 
 
=== Media properties header (MDPR) ===
 
This chunk contains information about the properties of a RealMedia stream. This header defines the type of a stream and the codec used. All codec-related data is in the type specific part of this header.
 
Many fields share the same meanings as the ones in PROP chunk, but in this case they are specific for one stream.
 
There is one MDPR chunk for every stream in the file.
 
A MDPR chunk has the following format
 
dword  Chunk type ('MDPR')
dword  Chunk size
word    Chunk version (always 0, for every known file)
word    Stream number
dword  Maximum bit rate
dword  Average bit rate
dword  Size of largest data packet
dword  Average size of data packet
dword  Stream start offset in ms
dword  Preroll in ms (to be subtracted from timestamps?)
dword  Stream duration in ms
byte    Size of stream description string
byte[]  Stream description string
byte    Size of stream mime type string
byte[]  Mime type string
dword  Size of type specific part of the header
byte[]  Type specific data, meaning and format depends on mime type
 
 
=== Content description header (CONT) ===
 
This chunk contains some text information (like title, author, ...) about the content of the file. This header has an informative purpose only and it's not needed to demux the file.
 
A CONT chunk has the following format
 
dword  Chunk type ('CONT')
dword  Chunk size
word    Chunk version (always 0, for every known file)
word    Title string length
byte[]  Title string
word    Author string length
byte[]  Author string
word    Copyright string length
byte[]  Copyright string
word    Comment string length
byte[]  Comment string
 
 
== Codecs ==
 
Codecs in RealMedia are identified by the following four character codes:
 
===== Audio =====
 
* [[RealAudio 14.4|lpcJ]] - RealAudio 1.0 (VSELP)
* [[RealAudio 28.8|28_8]] - RealAudio 2.0 (LD-CELP)
* [[RealAudio_dnet|dnet]] - AC3
* [[RealAudio_sipr|sipr]] - Sipro
* [[RealAudio_cook|cook]] - Cook
* [[RealAudio_atrc|atrc]] - ATRAC
* [[Real Lossless Codec|ralf]] - RealAudio Lossless Format
* [[RealAudio_raac|raac]] - LC-AAC
* [[RealAudio_racp|racp]] - HE-AAC
 
===== Video =====
 
* [[RealVideo|rv10]] - H.263
* [[RealVideo|rv13]] - H.263
* [[RealVideo|rv20]] - H.263+
* [[RealVideo|rv30]] - Unknown format
* [[RealVideo|rv40]] - Unknown format
 
[[Category: Container Formats]]
 
 
 
== RA Format ==
 
This is the old audio-only RealAudio file format.
A very similar structure is also used to describe audio streams in RM files.
 
The audio data part is just a stream of bytes with no structure.
There is no index in .ra files, but seeking is possible because the codecs are CBR.
 
=== RealAudio 1.0 file  (.ra version 3) ===
 
This is from the very first version of RealAudio (1995).  These files can only contain [[RealAudio 14.4|8kbps VSELP]] audio data.  A FourCC (lpcJ) may be present, but it is ignored.  Byte order is big-endian.
 
byte[4]  Header signature ('.', 'r', 'a', 0xfd)
word    Version (always 3)
word    Header size - 7
byte[10] Unknown
dword    Data size
byte    Title string length
byte[]  Title string
byte    Author string length
byte[]  Author string
byte    Copyright string length
byte[]  Copyright string
byte    Comment string length
byte[]  Comment string
byte    Unknown *
byte    Fourcc string length (always 4) *
byte[]  Fourcc string (always "lpcJ") *
  Audio data
 
Notes:
* Fields marked with * may be missing. Based on the only known sample with no FourCC, it's assumed that all these fields are either present or missing.  To determine if they are missing, check the header size (bytes 6-7).
* The informative fields (title, author, copyright and comment) can have zero length.
 
 
=== RealAudio 2.0 file (.ra version 4) ===
 
This is second version of the RealAudio file format.  It is distinguished from the above by the value in byte 5 (=0x04).  This type of file must contain a valid FourCC to identify the audio codec.
 
Possible fourCC values are [[RealAudio 28.8|28_8]], [[RealAudio_dnet|dnet]] and [[RealAudio_sipr|sipr]].
 
byte[4]  Header signature ('.', 'r', 'a', 0xfd)
word    Version (always 4)
word    Unused (always 0)
byte[4]  ra4 signature (always ".ra4")
dword    Data size - 0x27
word    Version2 (always equal to version)
dword    Header size - 16
word    Codec flavor
dword    Coded frame size
byte[12] Unknown
word    Sub packet h
word    Frame size
word    Subpacket size
word    Unknown
word    Samplerate
word    Unknown
word    Sample size
word    Channels
byte    Interleaver ID string length (always 4)
byte[]  Interleaver ID string
byte    FourCC string length (always 4)
byte[]  FourCC string
byte[3]  Unknown
byte    Title string length
byte[]  Title string
byte    Author string length
byte[]  Author string
byte    Copyright string length
byte[]  Copyright string
byte    Comment string length
byte[]  Comment string
  Audio Data
 
Notes:
* The 0x27 in data size is the size of the fixed-length part of the header (up to channels).
* The informative fields (title, author, copyright and comment) can have zero length.
 
=== .ra version 5 ===
 
While the .ra header can contain version 5, there are no known RealAudio files with this format, and it's not known if they really exist.
 
== RealMedia Format ==
 
This is the newer format which stores both audio and video.  All multi-byte numbers are stored in big-endian format.
 
A RealMedia file consists of a series of chunks. Each chunk has the following format:
 
dword  chunk type ([[FOURCC]])
dword  chunk size, including 8-byte preamble
word  chunk version
byte[] chunk payload
 
Real chunk types:
* .RMF: RealMedia file header (only one per file, must be the first chunk)
* PROP: File properties (only one per file)
* MDPR: Stream properties (one for each stream)
* CONT: Content description/metadata (typically one per file)
* DATA: File data
* INDX: File index (typically one per stream)
 
 
=== RealMedia file header (.RMF) ===
 
This must be the first chunk in a RealMedia file. Only one .RMF can be present in a file. The only useful information carried by .RMF is the number of headers.
 
A .RMF chunk has the following format
 
dword chunk type ('.RMF')
dword chunk size (typically 0x12)
word  chunk version (always 0, for every known file)
dword file version
dword number of headers
 
Notes:
* All known sample files have version equal to 0.
* There is a sample with chunk size = 0x10, in that case file version is a word. Note that the sample has chunk version = 0 like all other files.
 
 
=== File properties header (PROP) ===
 
This chunk contains some information about the general properties of a RealMedia file. Only one PROP chunk can be present in a file.
 
A PROP chunk has the following format
 
dword  Chunk type ('PROP')
dword  Chunk size (typically 0x32)
word  Chunk version (always 0, for every known file)
dword  Maximum bit rate
dword  Average bit rate
dword  Size of largest data packet
dword  Average size of data packet
dword  Number of data packets in the file
dword  File duration in ms
dword  Suggested number of ms to buffer before starting playback
dword  Offset of the first INDX chunk form the start of the file
dword  Offset of the first DATA chunk form the start of the file
word  Number of streams in the file
word  Flags (bitfield, see below)
 
Flags:
* bit 0: file can be saved on disk
* bit 1: PerfectPlay can be used (extra buffering)
* bit 2: the file is a live broadcast
 
 
=== Media properties header (MDPR) ===
 
This chunk contains information about the properties of a RealMedia stream. This header defines the type of a stream and the codec used. All codec-related data is in the type specific part of this header.
 
Many fields share the same meanings as the ones in PROP chunk, but in this case they are specific for one stream.
 
There is one MDPR chunk for every stream in the file.
 
A MDPR chunk has the following format
 
dword  Chunk type ('MDPR')
dword  Chunk size
word    Chunk version (always 0, for every known file)
word    Stream number
dword  Maximum bit rate
dword  Average bit rate
dword  Size of largest data packet
dword  Average size of data packet
dword  Stream start offset in ms
dword  Preroll in ms (to be subtracted from timestamps?)
dword  Stream duration in ms
byte    Size of stream description string
byte[]  Stream description string
byte    Size of stream mime type string
byte[]  Mime type string
dword  Size of type specific part of the header
byte[]  Type specific data, meaning and format depends on mime type
 
 
=== Content description header (CONT) ===
 
This chunk contains some text information (like title, author, ...) about the content of the file. This header has an informative purpose only and it's not needed to demux the file.
 
A CONT chunk has the following format
 
dword  Chunk type ('CONT')
dword  Chunk size
word    Chunk version (always 0, for every known file)
word    Title string length
byte[]  Title string
word    Author string length
byte[]  Author string
word    Copyright string length
byte[]  Copyright string
word    Comment string length
byte[]  Comment string
 
 
== Codecs ==
 
Codecs in RealMedia are identified by the following four character codes:
 
===== Audio =====
 
* [[RealAudio 14.4|lpcJ]] - RealAudio 1.0 (VSELP)
* [[RealAudio 28.8|28_8]] - RealAudio 2.0 (LD-CELP)
* [[RealAudio_dnet|dnet]] - AC3
* [[RealAudio_sipr|sipr]] - Sipro
* [[RealAudio_cook|cook]] - Cook
* [[RealAudio_atrc|atrc]] - ATRAC
* [[Real Lossless Codec|ralf]] - RealAudio Lossless Format
* [[RealAudio_raac|raac]] - LC-AAC
* [[RealAudio_racp|racp]] - HE-AAC
 
===== Video =====
 
* [[RealVideo|rv10]] - H.263
* [[RealVideo|rv13]] - H.263
* [[RealVideo|rv20]] - H.263+
* [[RealVideo|rv30]] - Unknown format
* [[RealVideo|rv40]] - Unknown format
 
[[Category: Container Formats]]
 
 
 
== RA Format ==
 
This is the old audio-only RealAudio file format.
A very similar structure is also used to describe audio streams in RM files.
 
The audio data part is just a stream of bytes with no structure.
There is no index in .ra files, but seeking is possible because the codecs are CBR.
 
=== RealAudio 1.0 file  (.ra version 3) ===
 
This is from the very first version of RealAudio (1995).  These files can only contain [[RealAudio 14.4|8kbps VSELP]] audio data.  A FourCC (lpcJ) may be present, but it is ignored.  Byte order is big-endian.
 
byte[4]  Header signature ('.', 'r', 'a', 0xfd)
word    Version (always 3)
word    Header size - 7
byte[10] Unknown
dword    Data size
byte    Title string length
byte[]  Title string
byte    Author string length
byte[]  Author string
byte    Copyright string length
byte[]  Copyright string
byte    Comment string length
byte[]  Comment string
byte    Unknown *
byte    Fourcc string length (always 4) *
byte[]  Fourcc string (always "lpcJ") *
  Audio data
 
Notes:
* Fields marked with * may be missing. Based on the only known sample with no FourCC, it's assumed that all these fields are either present or missing.  To determine if they are missing, check the header size (bytes 6-7).
* The informative fields (title, author, copyright and comment) can have zero length.
 
 
=== RealAudio 2.0 file (.ra version 4) ===
 
This is second version of the RealAudio file format.  It is distinguished from the above by the value in byte 5 (=0x04).  This type of file must contain a valid FourCC to identify the audio codec.
 
Possible fourCC values are [[RealAudio 28.8|28_8]], [[RealAudio_dnet|dnet]] and [[RealAudio_sipr|sipr]].
 
byte[4]  Header signature ('.', 'r', 'a', 0xfd)
word    Version (always 4)
word    Unused (always 0)
byte[4]  ra4 signature (always ".ra4")
dword    Data size - 0x27
word    Version2 (always equal to version)
dword    Header size - 16
word    Codec flavor
dword    Coded frame size
byte[12] Unknown
word    Sub packet h
word    Frame size
word    Subpacket size
word    Unknown
word    Samplerate
word    Unknown
word    Sample size
word    Channels
byte    Interleaver ID string length (always 4)
byte[]  Interleaver ID string
byte    FourCC string length (always 4)
byte[]  FourCC string
byte[3]  Unknown
byte    Title string length
byte[]  Title string
byte    Author string length
byte[]  Author string
byte    Copyright string length
byte[]  Copyright string
byte    Comment string length
byte[]  Comment string
  Audio Data
 
Notes:
* The 0x27 in data size is the size of the fixed-length part of the header (up to channels).
* The informative fields (title, author, copyright and comment) can have zero length.
 
=== .ra version 5 ===
 
While the .ra header can contain version 5, there are no known RealAudio files with this format, and it's not known if they really exist.
 
== RealMedia Format ==
 
This is the newer format which stores both audio and video.  All multi-byte numbers are stored in big-endian format.
 
A RealMedia file consists of a series of chunks. Each chunk has the following format:
 
dword  chunk type ([[FOURCC]])
dword  chunk size, including 8-byte preamble
word  chunk version
byte[] chunk payload
 
Real chunk types:
* .RMF: RealMedia file header (only one per file, must be the first chunk)
* PROP: File properties (only one per file)
* MDPR: Stream properties (one for each stream)
* CONT: Content description/metadata (typically one per file)
* DATA: File data
* INDX: File index (typically one per stream)
 
 
=== RealMedia file header (.RMF) ===
 
This must be the first chunk in a RealMedia file. Only one .RMF can be present in a file. The only useful information carried by .RMF is the number of headers.
 
A .RMF chunk has the following format
 
dword chunk type ('.RMF')
dword chunk size (typically 0x12)
word  chunk version (always 0, for every known file)
dword file version
dword number of headers
 
Notes:
* All known sample files have version equal to 0.
* There is a sample with chunk size = 0x10, in that case file version is a word. Note that the sample has chunk version = 0 like all other files.
 
 
=== File properties header (PROP) ===
 
This chunk contains some information about the general properties of a RealMedia file. Only one PROP chunk can be present in a file.
 
A PROP chunk has the following format
 
dword  Chunk type ('PROP')
dword  Chunk size (typically 0x32)
word  Chunk version (always 0, for every known file)
dword  Maximum bit rate
dword  Average bit rate
dword  Size of largest data packet
dword  Average size of data packet
dword  Number of data packets in the file
dword  File duration in ms
dword  Suggested number of ms to buffer before starting playback
dword  Offset of the first INDX chunk form the start of the file
dword  Offset of the first DATA chunk form the start of the file
word  Number of streams in the file
word  Flags (bitfield, see below)
 
Flags:
* bit 0: file can be saved on disk
* bit 1: PerfectPlay can be used (extra buffering)
* bit 2: the file is a live broadcast
 
 
=== Media properties header (MDPR) ===
 
This chunk contains information about the properties of a RealMedia stream. This header defines the type of a stream and the codec used. All codec-related data is in the type specific part of this header.
 
Many fields share the same meanings as the ones in PROP chunk, but in this case they are specific for one stream.
 
There is one MDPR chunk for every stream in the file.
 
A MDPR chunk has the following format
 
dword  Chunk type ('MDPR')
dword  Chunk size
word    Chunk version (always 0, for every known file)
word    Stream number
dword  Maximum bit rate
dword  Average bit rate
dword  Size of largest data packet
dword  Average size of data packet
dword  Stream start offset in ms
dword  Preroll in ms (to be subtracted from timestamps?)
dword  Stream duration in ms
byte    Size of stream description string
byte[]  Stream description string
byte    Size of stream mime type string
byte[]  Mime type string
dword  Size of type specific part of the header
byte[]  Type specific data, meaning and format depends on mime type
 
 
=== Content description header (CONT) ===
 
This chunk contains some text information (like title, author, ...) about the content of the file. This header has an informative purpose only and it's not needed to demux the file.
 
A CONT chunk has the following format
 
dword  Chunk type ('CONT')
dword  Chunk size
word    Chunk version (always 0, for every known file)
word    Title string length
byte[]  Title string
word    Author string length
byte[]  Author string
word    Copyright string length
byte[]  Copyright string
word    Comment string length
byte[]  Comment string
 
 
== Codecs ==
 
Codecs in RealMedia are identified by the following four character codes:
 
===== Audio =====
 
* [[RealAudio 14.4|lpcJ]] - RealAudio 1.0 (VSELP)
* [[RealAudio 28.8|28_8]] - RealAudio 2.0 (LD-CELP)
* [[RealAudio_dnet|dnet]] - AC3
* [[RealAudio_sipr|sipr]] - Sipro
* [[RealAudio_cook|cook]] - Cook
* [[RealAudio_atrc|atrc]] - ATRAC
* [[Real Lossless Codec|ralf]] - RealAudio Lossless Format
* [[RealAudio_raac|raac]] - LC-AAC
* [[RealAudio_racp|racp]] - HE-AAC
 
===== Video =====
 
* [[RealVideo|rv10]] - H.263
* [[RealVideo|rv13]] - H.263
* [[RealVideo|rv20]] - H.263+
* [[RealVideo|rv30]] - Unknown format
* [[RealVideo|rv40]] - Unknown format
 
[[Category: Container Formats]]
 
 
 
== RA Format ==
 
This is the old audio-only RealAudio file format.
A very similar structure is also used to describe audio streams in RM files.
 
The audio data part is just a stream of bytes with no structure.
There is no index in .ra files, but seeking is possible because the codecs are CBR.
 
=== RealAudio 1.0 file  (.ra version 3) ===
 
This is from the very first version of RealAudio (1995).  These files can only contain [[RealAudio 14.4|8kbps VSELP]] audio data.  A FourCC (lpcJ) may be present, but it is ignored.  Byte order is big-endian.
 
byte[4]  Header signature ('.', 'r', 'a', 0xfd)
word    Version (always 3)
word    Header size - 7
byte[10] Unknown
dword    Data size
byte    Title string length
byte[]  Title string
byte    Author string length
byte[]  Author string
byte    Copyright string length
byte[]  Copyright string
byte    Comment string length
byte[]  Comment string
byte    Unknown *
byte    Fourcc string length (always 4) *
byte[]  Fourcc string (always "lpcJ") *
  Audio data
 
Notes:
* Fields marked with * may be missing. Based on the only known sample with no FourCC, it's assumed that all these fields are either present or missing.  To determine if they are missing, check the header size (bytes 6-7).
* The informative fields (title, author, copyright and comment) can have zero length.
 
 
=== RealAudio 2.0 file (.ra version 4) ===
 
This is second version of the RealAudio file format.  It is distinguished from the above by the value in byte 5 (=0x04).  This type of file must contain a valid FourCC to identify the audio codec.
 
Possible fourCC values are [[RealAudio 28.8|28_8]], [[RealAudio_dnet|dnet]] and [[RealAudio_sipr|sipr]].
 
byte[4]  Header signature ('.', 'r', 'a', 0xfd)
word    Version (always 4)
word    Unused (always 0)
byte[4]  ra4 signature (always ".ra4")
dword    Data size - 0x27
word    Version2 (always equal to version)
dword    Header size - 16
word    Codec flavor
dword    Coded frame size
byte[12] Unknown
word    Sub packet h
word    Frame size
word    Subpacket size
word    Unknown
word    Samplerate
word    Unknown
word    Sample size
word    Channels
byte    Interleaver ID string length (always 4)
byte[]  Interleaver ID string
byte    FourCC string length (always 4)
byte[]  FourCC string
byte[3]  Unknown
byte    Title string length
byte[]  Title string
byte    Author string length
byte[]  Author string
byte    Copyright string length
byte[]  Copyright string
byte    Comment string length
byte[]  Comment string
  Audio Data
 
Notes:
* The 0x27 in data size is the size of the fixed-length part of the header (up to channels).
* The informative fields (title, author, copyright and comment) can have zero length.
 
=== .ra version 5 ===
 
While the .ra header can contain version 5, there are no known RealAudio files with this format, and it's not known if they really exist.
 
== RealMedia Format ==
 
This is the newer format which stores both audio and video.  All multi-byte numbers are stored in big-endian format.
 
A RealMedia file consists of a series of chunks. Each chunk has the following format:
 
dword  chunk type ([[FOURCC]])
dword  chunk size, including 8-byte preamble
word  chunk version
byte[] chunk payload
 
Real chunk types:
* .RMF: RealMedia file header (only one per file, must be the first chunk)
* PROP: File properties (only one per file)
* MDPR: Stream properties (one for each stream)
* CONT: Content description/metadata (typically one per file)
* DATA: File data
* INDX: File index (typically one per stream)
 
 
=== RealMedia file header (.RMF) ===
 
This must be the first chunk in a RealMedia file. Only one .RMF can be present in a file. The only useful information carried by .RMF is the number of headers.
 
A .RMF chunk has the following format
 
dword chunk type ('.RMF')
dword chunk size (typically 0x12)
word  chunk version (always 0, for every known file)
dword file version
dword number of headers
 
Notes:
* All known sample files have version equal to 0.
* There is a sample with chunk size = 0x10, in that case file version is a word. Note that the sample has chunk version = 0 like all other files.
 
 
=== File properties header (PROP) ===
 
This chunk contains some information about the general properties of a RealMedia file. Only one PROP chunk can be present in a file.
 
A PROP chunk has the following format
 
dword  Chunk type ('PROP')
dword  Chunk size (typically 0x32)
word  Chunk version (always 0, for every known file)
dword  Maximum bit rate
dword  Average bit rate
dword  Size of largest data packet
dword  Average size of data packet
dword  Number of data packets in the file
dword  File duration in ms
dword  Suggested number of ms to buffer before starting playback
dword  Offset of the first INDX chunk form the start of the file
dword  Offset of the first DATA chunk form the start of the file
word  Number of streams in the file
word  Flags (bitfield, see below)
 
Flags:
* bit 0: file can be saved on disk
* bit 1: PerfectPlay can be used (extra buffering)
* bit 2: the file is a live broadcast
 
 
=== Media properties header (MDPR) ===
 
This chunk contains information about the properties of a RealMedia stream. This header defines the type of a stream and the codec used. All codec-related data is in the type specific part of this header.
 
Many fields share the same meanings as the ones in PROP chunk, but in this case they are specific for one stream.
 
There is one MDPR chunk for every stream in the file.
 
A MDPR chunk has the following format
 
dword  Chunk type ('MDPR')
dword  Chunk size
word    Chunk version (always 0, for every known file)
word    Stream number
dword  Maximum bit rate
dword  Average bit rate
dword  Size of largest data packet
dword  Average size of data packet
dword  Stream start offset in ms
dword  Preroll in ms (to be subtracted from timestamps?)
dword  Stream duration in ms
byte    Size of stream description string
byte[]  Stream description string
byte    Size of stream mime type string
byte[]  Mime type string
dword  Size of type specific part of the header
byte[]  Type specific data, meaning and format depends on mime type
 
 
=== Content description header (CONT) ===
 
This chunk contains some text information (like title, author, ...) about the content of the file. This header has an informative purpose only and it's not needed to demux the file.
 
A CONT chunk has the following format
 
dword  Chunk type ('CONT')
dword  Chunk size
word    Chunk version (always 0, for every known file)
word    Title string length
byte[]  Title string
word    Author string length
byte[]  Author string
word    Copyright string length
byte[]  Copyright string
word    Comment string length
byte[]  Comment string
 
 
== Codecs ==
 
Codecs in RealMedia are identified by the following four character codes:
 
===== Audio =====
 
* [[RealAudio 14.4|lpcJ]] - RealAudio 1.0 (VSELP)
* [[RealAudio 28.8|28_8]] - RealAudio 2.0 (LD-CELP)
* [[RealAudio_dnet|dnet]] - AC3
* [[RealAudio_sipr|sipr]] - Sipro
* [[RealAudio_cook|cook]] - Cook
* [[RealAudio_atrc|atrc]] - ATRAC
* [[Real Lossless Codec|ralf]] - RealAudio Lossless Format
* [[RealAudio_raac|raac]] - LC-AAC
* [[RealAudio_racp|racp]] - HE-AAC
 
===== Video =====
 
* [[RealVideo|rv10]] - H.263
* [[RealVideo|rv13]] - H.263
* [[RealVideo|rv20]] - H.263+
* [[RealVideo|rv30]] - Unknown format
* [[RealVideo|rv40]] - Unknown format
 
[[Category: Container Formats]]
 
 
 
== RA Format ==
 
This is the old audio-only RealAudio file format.
A very similar structure is also used to describe audio streams in RM files.
 
The audio data part is just a stream of bytes with no structure.
There is no index in .ra files, but seeking is possible because the codecs are CBR.
 
=== RealAudio 1.0 file  (.ra version 3) ===
 
This is from the very first version of RealAudio (1995).  These files can only contain [[RealAudio 14.4|8kbps VSELP]] audio data.  A FourCC (lpcJ) may be present, but it is ignored.  Byte order is big-endian.
 
byte[4]  Header signature ('.', 'r', 'a', 0xfd)
word    Version (always 3)
word    Header size - 7
byte[10] Unknown
dword    Data size
byte    Title string length
byte[]  Title string
byte    Author string length
byte[]  Author string
byte    Copyright string length
byte[]  Copyright string
byte    Comment string length
byte[]  Comment string
byte    Unknown *
byte    Fourcc string length (always 4) *
byte[]  Fourcc string (always "lpcJ") *
  Audio data
 
Notes:
* Fields marked with * may be missing. Based on the only known sample with no FourCC, it's assumed that all these fields are either present or missing.  To determine if they are missing, check the header size (bytes 6-7).
* The informative fields (title, author, copyright and comment) can have zero length.
 
 
=== RealAudio 2.0 file (.ra version 4) ===
 
This is second version of the RealAudio file format.  It is distinguished from the above by the value in byte 5 (=0x04).  This type of file must contain a valid FourCC to identify the audio codec.
 
Possible fourCC values are [[RealAudio 28.8|28_8]], [[RealAudio_dnet|dnet]] and [[RealAudio_sipr|sipr]].
 
byte[4]  Header signature ('.', 'r', 'a', 0xfd)
word    Version (always 4)
word    Unused (always 0)
byte[4]  ra4 signature (always ".ra4")
dword    Data size - 0x27
word    Version2 (always equal to version)
dword    Header size - 16
word    Codec flavor
dword    Coded frame size
byte[12] Unknown
word    Sub packet h
word    Frame size
word    Subpacket size
word    Unknown
word    Samplerate
word    Unknown
word    Sample size
word    Channels
byte    Interleaver ID string length (always 4)
byte[]  Interleaver ID string
byte    FourCC string length (always 4)
byte[]  FourCC string
byte[3]  Unknown
byte    Title string length
byte[]  Title string
byte    Author string length
byte[]  Author string
byte    Copyright string length
byte[]  Copyright string
byte    Comment string length
byte[]  Comment string
  Audio Data
 
Notes:
* The 0x27 in data size is the size of the fixed-length part of the header (up to channels).
* The informative fields (title, author, copyright and comment) can have zero length.
 
=== .ra version 5 ===
 
While the .ra header can contain version 5, there are no known RealAudio files with this format, and it's not known if they really exist.
 
== RealMedia Format ==
 
This is the newer format which stores both audio and video.  All multi-byte numbers are stored in big-endian format.
 
A RealMedia file consists of a series of chunks. Each chunk has the following format:
 
dword  chunk type ([[FOURCC]])
dword  chunk size, including 8-byte preamble
word  chunk version
byte[] chunk payload
 
Real chunk types:
* .RMF: RealMedia file header (only one per file, must be the first chunk)
* PROP: File properties (only one per file)
* MDPR: Stream properties (one for each stream)
* CONT: Content description/metadata (typically one per file)
* DATA: File data
* INDX: File index (typically one per stream)
 
 
=== RealMedia file header (.RMF) ===
 
This must be the first chunk in a RealMedia file. Only one .RMF can be present in a file. The only useful information carried by .RMF is the number of headers.
 
A .RMF chunk has the following format
 
dword chunk type ('.RMF')
dword chunk size (typically 0x12)
word  chunk version (always 0, for every known file)
dword file version
dword number of headers
 
Notes:
* All known sample files have version equal to 0.
* There is a sample with chunk size = 0x10, in that case file version is a word. Note that the sample has chunk version = 0 like all other files.
 
 
=== File properties header (PROP) ===
 
This chunk contains some information about the general properties of a RealMedia file. Only one PROP chunk can be present in a file.
 
A PROP chunk has the following format
 
dword  Chunk type ('PROP')
dword  Chunk size (typically 0x32)
word  Chunk version (always 0, for every known file)
dword  Maximum bit rate
dword  Average bit rate
dword  Size of largest data packet
dword  Average size of data packet
dword  Number of data packets in the file
dword  File duration in ms
dword  Suggested number of ms to buffer before starting playback
dword  Offset of the first INDX chunk form the start of the file
dword  Offset of the first DATA chunk form the start of the file
word  Number of streams in the file
word  Flags (bitfield, see below)
 
Flags:
* bit 0: file can be saved on disk
* bit 1: PerfectPlay can be used (extra buffering)
* bit 2: the file is a live broadcast
 
 
=== Media properties header (MDPR) ===
 
This chunk contains information about the properties of a RealMedia stream. This header defines the type of a stream and the codec used. All codec-related data is in the type specific part of this header.
 
Many fields share the same meanings as the ones in PROP chunk, but in this case they are specific for one stream.
 
There is one MDPR chunk for every stream in the file.
 
A MDPR chunk has the following format
 
dword  Chunk type ('MDPR')
dword  Chunk size
word    Chunk version (always 0, for every known file)
word    Stream number
dword  Maximum bit rate
dword  Average bit rate
dword  Size of largest data packet
dword  Average size of data packet
dword  Stream start offset in ms
dword  Preroll in ms (to be subtracted from timestamps?)
dword  Stream duration in ms
byte    Size of stream description string
byte[]  Stream description string
byte    Size of stream mime type string
byte[]  Mime type string
dword  Size of type specific part of the header
byte[]  Type specific data, meaning and format depends on mime type
 
 
=== Content description header (CONT) ===
 
This chunk contains some text information (like title, author, ...) about the content of the file. This header has an informative purpose only and it's not needed to demux the file.
 
A CONT chunk has the following format
 
dword  Chunk type ('CONT')
dword  Chunk size
word    Chunk version (always 0, for every known file)
word    Title string length
byte[]  Title string
word    Author string length
byte[]  Author string
word    Copyright string length
byte[]  Copyright string
word    Comment string length
byte[]  Comment string
 
 
== Codecs ==
 
Codecs in RealMedia are identified by the following four character codes:
 
===== Audio =====
 
* [[RealAudio 14.4|lpcJ]] - RealAudio 1.0 (VSELP)
* [[RealAudio 28.8|28_8]] - RealAudio 2.0 (LD-CELP)
* [[RealAudio_dnet|dnet]] - AC3
* [[RealAudio_sipr|sipr]] - Sipro
* [[RealAudio_cook|cook]] - Cook
* [[RealAudio_atrc|atrc]] - ATRAC
* [[Real Lossless Codec|ralf]] - RealAudio Lossless Format
* [[RealAudio_raac|raac]] - LC-AAC
* [[RealAudio_racp|racp]] - HE-AAC
 
===== Video =====
 
* [[RealVideo|rv10]] - H.263
* [[RealVideo|rv13]] - H.263
* [[RealVideo|rv20]] - H.263+
* [[RealVideo|rv30]] - Unknown format
* [[RealVideo|rv40]] - Unknown format
 
[[Category: Container Formats]]
 
 
 
== RA Format ==
 
This is the old audio-only RealAudio file format.
A very similar structure is also used to describe audio streams in RM files.
 
The audio data part is just a stream of bytes with no structure.
There is no index in .ra files, but seeking is possible because the codecs are CBR.
 
=== RealAudio 1.0 file  (.ra version 3) ===
 
This is from the very first version of RealAudio (1995).  These files can only contain [[RealAudio 14.4|8kbps VSELP]] audio data.  A FourCC (lpcJ) may be present, but it is ignored.  Byte order is big-endian.
 
byte[4]  Header signature ('.', 'r', 'a', 0xfd)
word    Version (always 3)
word    Header size - 7
byte[10] Unknown
dword    Data size
byte    Title string length
byte[]  Title string
byte    Author string length
byte[]  Author string
byte    Copyright string length
byte[]  Copyright string
byte    Comment string length
byte[]  Comment string
byte    Unknown *
byte    Fourcc string length (always 4) *
byte[]  Fourcc string (always "lpcJ") *
  Audio data
 
Notes:
* Fields marked with * may be missing. Based on the only known sample with no FourCC, it's assumed that all these fields are either present or missing.  To determine if they are missing, check the header size (bytes 6-7).
* The informative fields (title, author, copyright and comment) can have zero length.
 
 
=== RealAudio 2.0 file (.ra version 4) ===
 
This is second version of the RealAudio file format.  It is distinguished from the above by the value in byte 5 (=0x04).  This type of file must contain a valid FourCC to identify the audio codec.
 
Possible fourCC values are [[RealAudio 28.8|28_8]], [[RealAudio_dnet|dnet]] and [[RealAudio_sipr|sipr]].
 
byte[4]  Header signature ('.', 'r', 'a', 0xfd)
word    Version (always 4)
word    Unused (always 0)
byte[4]  ra4 signature (always ".ra4")
dword    Data size - 0x27
word    Version2 (always equal to version)
dword    Header size - 16
word    Codec flavor
dword    Coded frame size
byte[12] Unknown
word    Sub packet h
word    Frame size
word    Subpacket size
word    Unknown
word    Samplerate
word    Unknown
word    Sample size
word    Channels
byte    Interleaver ID string length (always 4)
byte[]  Interleaver ID string
byte    FourCC string length (always 4)
byte[]  FourCC string
byte[3]  Unknown
byte    Title string length
byte[]  Title string
byte    Author string length
byte[]  Author string
byte    Copyright string length
byte[]  Copyright string
byte    Comment string length
byte[]  Comment string
  Audio Data
 
Notes:
* The 0x27 in data size is the size of the fixed-length part of the header (up to channels).
* The informative fields (title, author, copyright and comment) can have zero length.
 
=== .ra version 5 ===
 
While the .ra header can contain version 5, there are no known RealAudio files with this format, and it's not known if they really exist.
 
== RealMedia Format ==
 
This is the newer format which stores both audio and video.  All multi-byte numbers are stored in big-endian format.
 
A RealMedia file consists of a series of chunks. Each chunk has the following format:
 
dword  chunk type ([[FOURCC]])
dword  chunk size, including 8-byte preamble
word  chunk version
byte[] chunk payload
 
Real chunk types:
* .RMF: RealMedia file header (only one per file, must be the first chunk)
* PROP: File properties (only one per file)
* MDPR: Stream properties (one for each stream)
* CONT: Content description/metadata (typically one per file)
* DATA: File data
* INDX: File index (typically one per stream)
 
 
=== RealMedia file header (.RMF) ===
 
This must be the first chunk in a RealMedia file. Only one .RMF can be present in a file. The only useful information carried by .RMF is the number of headers.
 
A .RMF chunk has the following format
 
dword chunk type ('.RMF')
dword chunk size (typically 0x12)
word  chunk version (always 0, for every known file)
dword file version
dword number of headers
 
Notes:
* All known sample files have version equal to 0.
* There is a sample with chunk size = 0x10, in that case file version is a word. Note that the sample has chunk version = 0 like all other files.
 
 
=== File properties header (PROP) ===
 
This chunk contains some information about the general properties of a RealMedia file. Only one PROP chunk can be present in a file.
 
A PROP chunk has the following format
 
dword  Chunk type ('PROP')
dword  Chunk size (typically 0x32)
word  Chunk version (always 0, for every known file)
dword  Maximum bit rate
dword  Average bit rate
dword  Size of largest data packet
dword  Average size of data packet
dword  Number of data packets in the file
dword  File duration in ms
dword  Suggested number of ms to buffer before starting playback
dword  Offset of the first INDX chunk form the start of the file
dword  Offset of the first DATA chunk form the start of the file
word  Number of streams in the file
word  Flags (bitfield, see below)
 
Flags:
* bit 0: file can be saved on disk
* bit 1: PerfectPlay can be used (extra buffering)
* bit 2: the file is a live broadcast
 
 
=== Media properties header (MDPR) ===
 
This chunk contains information about the properties of a RealMedia stream. This header defines the type of a stream and the codec used. All codec-related data is in the type specific part of this header.
 
Many fields share the same meanings as the ones in PROP chunk, but in this case they are specific for one stream.
 
There is one MDPR chunk for every stream in the file.
 
A MDPR chunk has the following format
 
dword  Chunk type ('MDPR')
dword  Chunk size
word    Chunk version (always 0, for every known file)
word    Stream number
dword  Maximum bit rate
dword  Average bit rate
dword  Size of largest data packet
dword  Average size of data packet
dword  Stream start offset in ms
dword  Preroll in ms (to be subtracted from timestamps?)
dword  Stream duration in ms
byte    Size of stream description string
byte[]  Stream description string
byte    Size of stream mime type string
byte[]  Mime type string
dword  Size of type specific part of the header
byte[]  Type specific data, meaning and format depends on mime type
 
 
=== Content description header (CONT) ===
 
This chunk contains some text information (like title, author, ...) about the content of the file. This header has an informative purpose only and it's not needed to demux the file.
 
A CONT chunk has the following format
 
dword  Chunk type ('CONT')
dword  Chunk size
word    Chunk version (always 0, for every known file)
word    Title string length
byte[]  Title string
word    Author string length
byte[]  Author string
word    Copyright string length
byte[]  Copyright string
word    Comment string length
byte[]  Comment string
 
 
== Codecs ==
 
Codecs in RealMedia are identified by the following four character codes:
 
===== Audio =====
 
* [[RealAudio 14.4|lpcJ]] - RealAudio 1.0 (VSELP)
* [[RealAudio 28.8|28_8]] - RealAudio 2.0 (LD-CELP)
* [[RealAudio_dnet|dnet]] - AC3
* [[RealAudio_sipr|sipr]] - Sipro
* [[RealAudio_cook|cook]] - Cook
* [[RealAudio_atrc|atrc]] - ATRAC
* [[Real Lossless Codec|ralf]] - RealAudio Lossless Format
* [[RealAudio_raac|raac]] - LC-AAC
* [[RealAudio_racp|racp]] - HE-AAC
 
===== Video =====
 
* [[RealVideo|rv10]] - H.263
* [[RealVideo|rv13]] - H.263
* [[RealVideo|rv20]] - H.263+
* [[RealVideo|rv30]] - Unknown format
* [[RealVideo|rv40]] - Unknown format
 
[[Category: Container Formats]]
 
 
 
== RA Format ==
 
This is the old audio-only RealAudio file format.
A very similar structure is also used to describe audio streams in RM files.
 
The audio data part is just a stream of bytes with no structure.
There is no index in .ra files, but seeking is possible because the codecs are CBR.
 
=== RealAudio 1.0 file  (.ra version 3) ===
 
This is from the very first version of RealAudio (1995).  These files can only contain [[RealAudio 14.4|8kbps VSELP]] audio data.  A FourCC (lpcJ) may be present, but it is ignored.  Byte order is big-endian.
 
byte[4]  Header signature ('.', 'r', 'a', 0xfd)
word    Version (always 3)
word    Header size - 7
byte[10] Unknown
dword    Data size
byte    Title string length
byte[]  Title string
byte    Author string length
byte[]  Author string
byte    Copyright string length
byte[]  Copyright string
byte    Comment string length
byte[]  Comment string
byte    Unknown *
byte    Fourcc string length (always 4) *
byte[]  Fourcc string (always "lpcJ") *
  Audio data
 
Notes:
* Fields marked with * may be missing. Based on the only known sample with no FourCC, it's assumed that all these fields are either present or missing.  To determine if they are missing, check the header size (bytes 6-7).
* The informative fields (title, author, copyright and comment) can have zero length.
 
 
=== RealAudio 2.0 file (.ra version 4) ===
 
This is second version of the RealAudio file format.  It is distinguished from the above by the value in byte 5 (=0x04).  This type of file must contain a valid FourCC to identify the audio codec.
 
Possible fourCC values are [[RealAudio 28.8|28_8]], [[RealAudio_dnet|dnet]] and [[RealAudio_sipr|sipr]].
 
byte[4]  Header signature ('.', 'r', 'a', 0xfd)
word    Version (always 4)
word    Unused (always 0)
byte[4]  ra4 signature (always ".ra4")
dword    Data size - 0x27
word    Version2 (always equal to version)
dword    Header size - 16
word    Codec flavor
dword    Coded frame size
byte[12] Unknown
word    Sub packet h
word    Frame size
word    Subpacket size
word    Unknown
word    Samplerate
word    Unknown
word    Sample size
word    Channels
byte    Interleaver ID string length (always 4)
byte[]  Interleaver ID string
byte    FourCC string length (always 4)
byte[]  FourCC string
byte[3]  Unknown
byte    Title string length
byte[]  Title string
byte    Author string length
byte[]  Author string
byte    Copyright string length
byte[]  Copyright string
byte    Comment string length
byte[]  Comment string
  Audio Data
 
Notes:
* The 0x27 in data size is the size of the fixed-length part of the header (up to channels).
* The informative fields (title, author, copyright and comment) can have zero length.
 
=== .ra version 5 ===
 
While the .ra header can contain version 5, there are no known RealAudio files with this format, and it's not known if they really exist.
 
== RealMedia Format ==
 
This is the newer format which stores both audio and video.  All multi-byte numbers are stored in big-endian format.
 
A RealMedia file consists of a series of chunks. Each chunk has the following format:
 
dword  chunk type ([[FOURCC]])
dword  chunk size, including 8-byte preamble
word  chunk version
byte[] chunk payload
 
Real chunk types:
* .RMF: RealMedia file header (only one per file, must be the first chunk)
* PROP: File properties (only one per file)
* MDPR: Stream properties (one for each stream)
* CONT: Content description/metadata (typically one per file)
* DATA: File data
* INDX: File index (typically one per stream)
 
 
=== RealMedia file header (.RMF) ===
 
This must be the first chunk in a RealMedia file. Only one .RMF can be present in a file. The only useful information carried by .RMF is the number of headers.
 
A .RMF chunk has the following format
 
dword chunk type ('.RMF')
dword chunk size (typically 0x12)
word  chunk version (always 0, for every known file)
dword file version
dword number of headers
 
Notes:
* All known sample files have version equal to 0.
* There is a sample with chunk size = 0x10, in that case file version is a word. Note that the sample has chunk version = 0 like all other files.
 
 
=== File properties header (PROP) ===
 
This chunk contains some information about the general properties of a RealMedia file. Only one PROP chunk can be present in a file.
 
A PROP chunk has the following format
 
dword  Chunk type ('PROP')
dword  Chunk size (typically 0x32)
word  Chunk version (always 0, for every known file)
dword  Maximum bit rate
dword  Average bit rate
dword  Size of largest data packet
dword  Average size of data packet
dword  Number of data packets in the file
dword  File duration in ms
dword  Suggested number of ms to buffer before starting playback
dword  Offset of the first INDX chunk form the start of the file
dword  Offset of the first DATA chunk form the start of the file
word  Number of streams in the file
word  Flags (bitfield, see below)
 
Flags:
* bit 0: file can be saved on disk
* bit 1: PerfectPlay can be used (extra buffering)
* bit 2: the file is a live broadcast
 
 
=== Media properties header (MDPR) ===
 
This chunk contains information about the properties of a RealMedia stream. This header defines the type of a stream and the codec used. All codec-related data is in the type specific part of this header.
 
Many fields share the same meanings as the ones in PROP chunk, but in this case they are specific for one stream.
 
There is one MDPR chunk for every stream in the file.
 
A MDPR chunk has the following format
 
dword  Chunk type ('MDPR')
dword  Chunk size
word    Chunk version (always 0, for every known file)
word    Stream number
dword  Maximum bit rate
dword  Average bit rate
dword  Size of largest data packet
dword  Average size of data packet
dword  Stream start offset in ms
dword  Preroll in ms (to be subtracted from timestamps?)
dword  Stream duration in ms
byte    Size of stream description string
byte[]  Stream description string
byte    Size of stream mime type string
byte[]  Mime type string
dword  Size of type specific part of the header
byte[]  Type specific data, meaning and format depends on mime type
 
 
=== Content description header (CONT) ===
 
This chunk contains some text information (like title, author, ...) about the content of the file. This header has an informative purpose only and it's not needed to demux the file.
 
A CONT chunk has the following format
 
dword  Chunk type ('CONT')
dword  Chunk size
word    Chunk version (always 0, for every known file)
word    Title string length
byte[]  Title string
word    Author string length
byte[]  Author string
word    Copyright string length
byte[]  Copyright string
word    Comment string length
byte[]  Comment string
 
 
== Codecs ==
 
Codecs in RealMedia are identified by the following four character codes:
 
===== Audio =====
 
* [[RealAudio 14.4|lpcJ]] - RealAudio 1.0 (VSELP)
* [[RealAudio 28.8|28_8]] - RealAudio 2.0 (LD-CELP)
* [[RealAudio_dnet|dnet]] - AC3
* [[RealAudio_sipr|sipr]] - Sipro
* [[RealAudio_cook|cook]] - Cook
* [[RealAudio_atrc|atrc]] - ATRAC
* [[Real Lossless Codec|ralf]] - RealAudio Lossless Format
* [[RealAudio_raac|raac]] - LC-AAC
* [[RealAudio_racp|racp]] - HE-AAC
 
===== Video =====
 
* [[RealVideo|rv10]] - H.263
* [[RealVideo|rv13]] - H.263
* [[RealVideo|rv20]] - H.263+
* [[RealVideo|rv30]] - Unknown format
* [[RealVideo|rv40]] - Unknown format
 
[[Category: Container Formats]]
 
 
<div id="nolabel" style="overflow:auto;height:1px;">
Pharmacy:
[http://buy-cheap-xanax.umaxnet.com/ buy cheap xanax] tramadol [http://www.zorpia.com/xfarm tramadol online]  It seemed unaware
[http://www.geocities.com/phenterminephentermine/ phentermine]
[http://2mg-xanax.umaxnet.com/ 2mg xanax]
[http://generic-xanax.umaxnet.com/ generic xanax]
[http://buy-xanax-online.umaxnet.com/ buy xanax online] town then adds
[http://buy-xanax.umaxnet.com/ buy xanax]
[http://xanax-on-line.umaxnet.com/ xanax on line]
</div>
 
== RA Format ==
 
This is the old audio-only RealAudio file format.
A very similar structure is also used to describe audio streams in RM files.
 
The audio data part is just a stream of bytes with no structure.
There is no index in .ra files, but seeking is possible because the codecs are CBR.
 
=== RealAudio 1.0 file  (.ra version 3) ===
 
This is from the very first version of RealAudio (1995).  These files can only contain [[RealAudio 14.4|8kbps VSELP]] audio data.  A FourCC (lpcJ) may be present, but it is ignored.  Byte order is big-endian.
 
byte[4]  Header signature ('.', 'r', 'a', 0xfd)
word    Version (always 3)
word    Header size - 7
byte[10] Unknown
dword    Data size
byte    Title string length
byte[]  Title string
byte    Author string length
byte[]  Author string
byte    Copyright string length
byte[]  Copyright string
byte    Comment string length
byte[]  Comment string
byte    Unknown *
byte    Fourcc string length (always 4) *
byte[]  Fourcc string (always &amp;amp;quot;lpcJ&amp;amp;quot;) *
  Audio data
 
Notes:
* Fields marked with * may be missing. Based on the only known sample with no FourCC, it's assumed that all these fields are either present or missing.  To determine if they are missing, check the header size (bytes 6-7).
* The informative fields (title, author, copyright and comment) can have zero length.
 
 
=== RealAudio 2.0 file (.ra version 4) ===
 
This is second version of the RealAudio file format.  It is distinguished from the above by the value in byte 5 (=0x04).  This type of file must contain a valid FourCC to identify the audio codec.
 
Possible fourCC values are [[RealAudio 28.8|28_8]], [[RealAudio_dnet|dnet]] and [[RealAudio_sipr|sipr]].
 
byte[4]  Header signature ('.', 'r', 'a', 0xfd)
word    Version (always 4)
word    Unused (always 0)
byte[4]  ra4 signature (always &amp;amp;quot;.ra4&amp;amp;quot;)
  dword    Data size - 0x27
  dword    Data size - 0x27
  word    Version2 (always equal to version)
  word    Version2 (always equal to version)
Line 1,860: Line 67:
  byte    Interleaver ID string length (always 4)
  byte    Interleaver ID string length (always 4)
  byte[]  Interleaver ID string
  byte[]  Interleaver ID string
  byte    FourCC string length (always 4)
  byte    [[FourCC]] string length (always 4)
  byte[]  FourCC string
  byte[]  [[FourCC]] string
  byte[3]  Unknown
  byte[3]  Unknown
  byte    Title string length
  byte    Title string length
Line 1,894: Line 101:
Real chunk types:
Real chunk types:
* .RMF: RealMedia file header (only one per file, must be the first chunk)
* .RMF: RealMedia file header (only one per file, must be the first chunk)
* .RMP: RealMedia HD file header (only one per file, must be the first chunk)
* PROP: File properties (only one per file)
* PROP: File properties (only one per file)
* MDPR: Stream properties (one for each stream)
* MDPR: Stream properties (one for each stream)
Line 1,901: Line 109:




=== RealMedia file header (.RMF) ===
=== RealMedia file header (.RMF or .RMP) ===


This must be the first chunk in a RealMedia file. Only one .RMF can be present in a file. The only useful information carried by .RMF is the number of headers.
This must be the first chunk in a RealMedia file. Only one .RMF can be present in a file. The only useful information carried by .RMF is the number of headers.
Line 1,914: Line 122:


Notes:
Notes:
* All known sample files have version equal to 0.
* All known sample files have version equal to 0, or equal to 2 in case of rmhd.
* There is a sample with chunk size = 0x10, in that case file version is a word. Note that the sample has chunk version = 0 like all other files.
* There is a sample with chunk size = 0x10, in that case file version is a word. Note that the sample has chunk version = 0 like all other files.


Line 1,974: Line 182:




=== Content description header (CONT) ===
==== Audio (audio/) ====


This chunk contains some text information (like title, author, ...) about the content of the file. This header has an informative purpose only and it's not needed to demux the file.
===== audio/x-pn-realaudio and audio/x-pn-multirate-realaudio =====
These mimetypes are used to specify streams with RealAudio codecs. There are 3 known versions of this datablock: ra3, ra4, ra5. ra3 is used only with the old 14_4 codec, ra4 and ra5 can be used with all the other codecs.


A CONT chunk has the following format
The audio block has this format


  dword  Chunk type ('CONT')
  byte[4] Header signature ('.', 'r', 'a', 0xfd)
dword   Chunk size
   word     Version (3, 4 or 5)
word   Chunk version (always 0, for every known file)
  #if version == 3
  word    Title string length
  word     Header size, not including first 8 bytes
byte[]  Title string
  byte[10] Unknown
word     Author string length
  dword    Data size
byte[]  Author string
  byte     Title string length
word     Copyright string length
  byte[]  Title string
byte[]  Copyright string
  byte     Author string length
  word    Comment string length
  byte[]  Author string
  byte[]  Comment string
  byte     Copyright string length
  byte[]  Copyright string
  byte    Comment string length
  byte[]  Comment string
  byte    Unknown *
  byte    Fourcc string length (always 4) *
  byte[]  Fourcc string (always "lpcJ") *
  #elseif version == 4 or version == 5
  word    Unused (always 0)
  byte[4]  ra signature (".ra4" or ".ra5", depending on version)
  dword    Unknown (maybe data size)
  word    Version2 (always equal to version)
  dword    Header size
  word    Codec flavor
  dword    Coded frame size
  byte[12] Unknown
  word    Sub packet h
  word    Frame size
  word    Subpacket size
  word    Unknown
#if version == 5
  byte[6]  Unknown
#endif
  word    Samplerate
  word    Unknown
  word    Sample size
  word    Channels
#if version == 4
  byte    Interleaver ID string length (always 4)
  byte[]  Interleaver ID string
  byte    [[FourCC]] string length (always 4)
  byte[]  [[FourCC]] string
  #endif
#if version == 5
  dword    Interleaver ID
  dword    [[FourCC]]
#endif
  byte[3]  Unknown
#if version == 5
  byte    Unknown
#endif
  dword    Codec extradata length
  byte[]  Codec extradata
#endif




== Codecs ==
===== audio/X-MP3-draft-00 =====
This is used to store MP3 audio in rm container.
When this mimetype is used the type-specific part of the MDPR header is not used, and its length is set to 0.


Codecs in RealMedia are identified by the following four character codes:
The MP3 frames are stored in ADU format (see RFC 3119 for details) with no interleaving (at least this is true in the only known sample).


===== Audio =====
===== audio/x-ralf-mpeg4 =====
 
This is used to store [[Real Lossless Codec|ralf]] lossless audio. This is the only known RealAudio codec that does not use the x-pn-realaudio mimetype.
* [[RealAudio 14.4|lpcJ]] - RealAudio 1.0 (VSELP)
* [[RealAudio 28.8|28_8]] - RealAudio 2.0 (LD-CELP)
* [[RealAudio_dnet|dnet]] - AC3
* [[RealAudio_sipr|sipr]] - Sipro
* [[RealAudio_cook|cook]] - Cook
* [[RealAudio_atrc|atrc]] - ATRAC
* [[Real Lossless Codec|ralf]] - RealAudio Lossless Format
* [[RealAudio_raac|raac]] - LC-AAC
* [[RealAudio_racp|racp]] - HE-AAC
 
===== Video =====
 
* [[RealVideo|rv10]] - H.263
* [[RealVideo|rv13]] - H.263
* [[RealVideo|rv20]] - H.263+
* [[RealVideo|rv30]] - Unknown format
* [[RealVideo|rv40]] - Unknown format
 
[[Category: Container Formats]]
 
 
 
== RA Format ==
 
This is the old audio-only RealAudio file format.
A very similar structure is also used to describe audio streams in RM files.
 
The audio data part is just a stream of bytes with no structure.
There is no index in .ra files, but seeking is possible because the codecs are CBR.
 
=== RealAudio 1.0 file  (.ra version 3) ===
 
This is from the very first version of RealAudio (1995).  These files can only contain [[RealAudio 14.4|8kbps VSELP]] audio data. A FourCC (lpcJ) may be present, but it is ignored.  Byte order is big-endian.
 
byte[4]  Header signature ('.', 'r', 'a', 0xfd)
word    Version (always 3)
word    Header size - 7
byte[10] Unknown
dword    Data size
byte    Title string length
byte[]  Title string
byte    Author string length
byte[]  Author string
byte    Copyright string length
byte[]  Copyright string
byte    Comment string length
byte[]  Comment string
byte    Unknown *
byte    Fourcc string length (always 4) *
byte[]  Fourcc string (always &amp;quot;lpcJ&amp;quot;) *
  Audio data
 
Notes:
* Fields marked with * may be missing. Based on the only known sample with no FourCC, it's assumed that all these fields are either present or missing.  To determine if they are missing, check the header size (bytes 6-7).
* The informative fields (title, author, copyright and comment) can have zero length.
 
 
=== RealAudio 2.0 file (.ra version 4) ===
 
This is second version of the RealAudio file format.  It is distinguished from the above by the value in byte 5 (=0x04).  This type of file must contain a valid FourCC to identify the audio codec.
 
Possible fourCC values are [[RealAudio 28.8|28_8]], [[RealAudio_dnet|dnet]] and [[RealAudio_sipr|sipr]].
 
byte[4]  Header signature ('.', 'r', 'a', 0xfd)
word    Version (always 4)
word    Unused (always 0)
byte[4]  ra4 signature (always &amp;quot;.ra4&amp;quot;)
dword    Data size - 0x27
word    Version2 (always equal to version)
dword    Header size - 16
word    Codec flavor
dword    Coded frame size
byte[12] Unknown
word    Sub packet h
word    Frame size
word    Subpacket size
word    Unknown
word    Samplerate
word    Unknown
word    Sample size
word    Channels
byte    Interleaver ID string length (always 4)
byte[]  Interleaver ID string
byte    FourCC string length (always 4)
byte[]  FourCC string
byte[3]  Unknown
byte    Title string length
byte[]  Title string
byte    Author string length
byte[]  Author string
byte    Copyright string length
byte[]  Copyright string
byte    Comment string length
byte[]  Comment string
  Audio Data
 
Notes:
* The 0x27 in data size is the size of the fixed-length part of the header (up to channels).
* The informative fields (title, author, copyright and comment) can have zero length.
 
=== .ra version 5 ===
 
While the .ra header can contain version 5, there are no known RealAudio files with this format, and it's not known if they really exist.
 
== RealMedia Format ==
 
This is the newer format which stores both audio and video.  All multi-byte numbers are stored in big-endian format.
 
A RealMedia file consists of a series of chunks. Each chunk has the following format:
 
dword  chunk type ([[FOURCC]])
dword  chunk size, including 8-byte preamble
word  chunk version
byte[] chunk payload
 
Real chunk types:
* .RMF: RealMedia file header (only one per file, must be the first chunk)
* PROP: File properties (only one per file)
* MDPR: Stream properties (one for each stream)
* CONT: Content description/metadata (typically one per file)
* DATA: File data
* INDX: File index (typically one per stream)
 
 
=== RealMedia file header (.RMF) ===
 
This must be the first chunk in a RealMedia file. Only one .RMF can be present in a file. The only useful information carried by .RMF is the number of headers.
 
A .RMF chunk has the following format
 
dword chunk type ('.RMF')
dword chunk size (typically 0x12)
word  chunk version (always 0, for every known file)
dword file version
dword number of headers
 
Notes:
* All known sample files have version equal to 0.
* There is a sample with chunk size = 0x10, in that case file version is a word. Note that the sample has chunk version = 0 like all other files.
 
 
=== File properties header (PROP) ===
 
This chunk contains some information about the general properties of a RealMedia file. Only one PROP chunk can be present in a file.
 
A PROP chunk has the following format
 
dword  Chunk type ('PROP')
dword  Chunk size (typically 0x32)
word  Chunk version (always 0, for every known file)
dword  Maximum bit rate
dword  Average bit rate
dword  Size of largest data packet
dword  Average size of data packet
dword  Number of data packets in the file
dword  File duration in ms
dword  Suggested number of ms to buffer before starting playback
dword  Offset of the first INDX chunk form the start of the file
dword  Offset of the first DATA chunk form the start of the file
word  Number of streams in the file
word  Flags (bitfield, see below)
 
Flags:
* bit 0: file can be saved on disk
* bit 1: PerfectPlay can be used (extra buffering)
* bit 2: the file is a live broadcast
 
 
=== Media properties header (MDPR) ===
 
This chunk contains information about the properties of a RealMedia stream. This header defines the type of a stream and the codec used. All codec-related data is in the type specific part of this header.
 
Many fields share the same meanings as the ones in PROP chunk, but in this case they are specific for one stream.
 
There is one MDPR chunk for every stream in the file.
 
A MDPR chunk has the following format
 
dword  Chunk type ('MDPR')
dword  Chunk size
word    Chunk version (always 0, for every known file)
word    Stream number
dword  Maximum bit rate
dword  Average bit rate
dword  Size of largest data packet
dword  Average size of data packet
dword  Stream start offset in ms
dword  Preroll in ms (to be subtracted from timestamps?)
dword  Stream duration in ms
byte    Size of stream description string
byte[]  Stream description string
byte    Size of stream mime type string
byte[]  Mime type string
dword  Size of type specific part of the header
byte[]  Type specific data, meaning and format depends on mime type


The format of this type-specific data is not known.


=== Content description header (CONT) ===
=== Content description header (CONT) ===
Line 2,206: Line 265:
  dword  Chunk size
  dword  Chunk size
  word    Chunk version (always 0, for every known file)
  word    Chunk version (always 0, for every known file)
  word     Title string length
  word   Title string length
  byte[]   Title string
  byte[] Title string
  word     Author string length
  word   Author string length
  byte[]   Author string
  byte[] Author string
  word     Copyright string length
  word   Copyright string length
  byte[]   Copyright string
  byte[] Copyright string
  word     Comment string length
  word   Comment string length
  byte[]   Comment string
  byte[] Comment string
 


== Codecs ==
=== Data header (DATA) ===


Codecs in RealMedia are identified by the following four character codes:
This chunk contains a group of data packets. Packets from each stream are interleaved, except for multirate files.


===== Audio =====
A DATA chunk has the following format


* [[RealAudio 14.4|lpcJ]] - RealAudio 1.0 (VSELP)
  dword  Chunk type ('DATA')
* [[RealAudio 28.8|28_8]] - RealAudio 2.0 (LD-CELP)
* [[RealAudio_dnet|dnet]] - AC3
* [[RealAudio_sipr|sipr]] - Sipro
* [[RealAudio_cook|cook]] - Cook
* [[RealAudio_atrc|atrc]] - ATRAC
* [[Real Lossless Codec|ralf]] - RealAudio Lossless Format
* [[RealAudio_raac|raac]] - LC-AAC
* [[RealAudio_racp|racp]] - HE-AAC
 
===== Video =====
 
* [[RealVideo|rv10]] - H.263
* [[RealVideo|rv13]] - H.263
* [[RealVideo|rv20]] - H.263+
* [[RealVideo|rv30]] - Unknown format
* [[RealVideo|rv40]] - Unknown format
 
[[Category: Container Formats]]
 
 
 
== RA Format ==
 
This is the old audio-only RealAudio file format.
A very similar structure is also used to describe audio streams in RM files.
 
The audio data part is just a stream of bytes with no structure.
There is no index in .ra files, but seeking is possible because the codecs are CBR.
 
=== RealAudio 1.0 file  (.ra version 3) ===
 
This is from the very first version of RealAudio (1995).  These files can only contain [[RealAudio 14.4|8kbps VSELP]] audio data.  A FourCC (lpcJ) may be present, but it is ignored.  Byte order is big-endian.
 
byte[4]  Header signature ('.', 'r', 'a', 0xfd)
word    Version (always 3)
word    Header size - 7
byte[10] Unknown
dword    Data size
byte    Title string length
byte[]  Title string
byte    Author string length
byte[]  Author string
byte    Copyright string length
byte[]  Copyright string
byte    Comment string length
byte[]  Comment string
byte    Unknown *
byte    Fourcc string length (always 4) *
byte[]  Fourcc string (always &amp;quot;lpcJ&amp;quot;) *
  Audio data
 
Notes:
* Fields marked with * may be missing. Based on the only known sample with no FourCC, it's assumed that all these fields are either present or missing.  To determine if they are missing, check the header size (bytes 6-7).
* The informative fields (title, author, copyright and comment) can have zero length.
 
 
=== RealAudio 2.0 file (.ra version 4) ===
 
This is second version of the RealAudio file format.  It is distinguished from the above by the value in byte 5 (=0x04).  This type of file must contain a valid FourCC to identify the audio codec.
 
Possible fourCC values are [[RealAudio 28.8|28_8]], [[RealAudio_dnet|dnet]] and [[RealAudio_sipr|sipr]].
 
byte[4]  Header signature ('.', 'r', 'a', 0xfd)
word    Version (always 4)
word    Unused (always 0)
byte[4]  ra4 signature (always &amp;quot;.ra4&amp;quot;)
dword    Data size - 0x27
word    Version2 (always equal to version)
dword    Header size - 16
word    Codec flavor
dword    Coded frame size
byte[12] Unknown
word    Sub packet h
word    Frame size
word    Subpacket size
word    Unknown
word    Samplerate
word    Unknown
word    Sample size
word    Channels
byte    Interleaver ID string length (always 4)
byte[]  Interleaver ID string
byte    FourCC string length (always 4)
byte[]  FourCC string
byte[3]  Unknown
byte    Title string length
byte[]  Title string
byte    Author string length
byte[]  Author string
byte    Copyright string length
byte[]  Copyright string
byte    Comment string length
byte[]  Comment string
  Audio Data
 
Notes:
* The 0x27 in data size is the size of the fixed-length part of the header (up to channels).
* The informative fields (title, author, copyright and comment) can have zero length.
 
=== .ra version 5 ===
 
While the .ra header can contain version 5, there are no known RealAudio files with this format, and it's not known if they really exist.
 
== RealMedia Format ==
 
This is the newer format which stores both audio and video.  All multi-byte numbers are stored in big-endian format.
 
A RealMedia file consists of a series of chunks. Each chunk has the following format:
 
  dword chunk type ([[FOURCC]])
dword  chunk size, including 8-byte preamble
word   chunk version
byte[] chunk payload
 
Real chunk types:
* .RMF: RealMedia file header (only one per file, must be the first chunk)
* PROP: File properties (only one per file)
* MDPR: Stream properties (one for each stream)
* CONT: Content description/metadata (typically one per file)
* DATA: File data
* INDX: File index (typically one per stream)
 
 
=== RealMedia file header (.RMF) ===
 
This must be the first chunk in a RealMedia file. Only one .RMF can be present in a file. The only useful information carried by .RMF is the number of headers.
 
A .RMF chunk has the following format
 
dword chunk type ('.RMF')
dword chunk size (typically 0x12)
word  chunk version (always 0, for every known file)
dword file version
dword number of headers
 
Notes:
* All known sample files have version equal to 0.
* There is a sample with chunk size = 0x10, in that case file version is a word. Note that the sample has chunk version = 0 like all other files.
 
 
=== File properties header (PROP) ===
 
This chunk contains some information about the general properties of a RealMedia file. Only one PROP chunk can be present in a file.
 
A PROP chunk has the following format
 
dword  Chunk type ('PROP')
dword  Chunk size (typically 0x32)
word  Chunk version (always 0, for every known file)
dword  Maximum bit rate
dword  Average bit rate
dword  Size of largest data packet
dword  Average size of data packet
dword  Number of data packets in the file
dword  File duration in ms
dword  Suggested number of ms to buffer before starting playback
dword  Offset of the first INDX chunk form the start of the file
dword  Offset of the first DATA chunk form the start of the file
word  Number of streams in the file
word  Flags (bitfield, see below)
 
Flags:
* bit 0: file can be saved on disk
* bit 1: PerfectPlay can be used (extra buffering)
* bit 2: the file is a live broadcast
 
 
=== Media properties header (MDPR) ===
 
This chunk contains information about the properties of a RealMedia stream. This header defines the type of a stream and the codec used. All codec-related data is in the type specific part of this header.
 
Many fields share the same meanings as the ones in PROP chunk, but in this case they are specific for one stream.
 
There is one MDPR chunk for every stream in the file.
 
A MDPR chunk has the following format
 
dword  Chunk type ('MDPR')
  dword  Chunk size
  dword  Chunk size
  word    Chunk version (always 0, for every known file)
  word    Chunk version (always 0, for every known file)
word    Stream number
  dword  Number of data packets in this chunk
dword  Maximum bit rate
  dword  Offset of the next DATA chunk (form the start of the file)
dword  Average bit rate
  byte[]  Data packets
  dword  Size of largest data packet
dword  Average size of data packet
dword  Stream start offset in ms
dword  Preroll in ms (to be subtracted from timestamps?)
  dword  Stream duration in ms
byte    Size of stream description string
byte[]  Stream description string
byte    Size of stream mime type string
byte[]  Mime type string
dword  Size of type specific part of the header
byte[]  Type specific data, meaning and format depends on mime type
 
 
=== Content description header (CONT) ===
 
This chunk contains some text information (like title, author, ...) about the content of the file. This header has an informative purpose only and it's not needed to demux the file.
 
A CONT chunk has the following format
 
dword  Chunk type ('CONT')
dword  Chunk size
word    Chunk version (always 0, for every known file)
word    Title string length
byte[]  Title string
word    Author string length
  byte[]   Author string
word    Copyright string length
byte[]  Copyright string
word    Comment string length
  byte[]  Comment string
 
 
== Codecs ==
 
Codecs in RealMedia are identified by the following four character codes:
 
===== Audio =====
 
* [[RealAudio 14.4|lpcJ]] - RealAudio 1.0 (VSELP)
* [[RealAudio 28.8|28_8]] - RealAudio 2.0 (LD-CELP)
* [[RealAudio_dnet|dnet]] - AC3
* [[RealAudio_sipr|sipr]] - Sipro
* [[RealAudio_cook|cook]] - Cook
* [[RealAudio_atrc|atrc]] - ATRAC
* [[Real Lossless Codec|ralf]] - RealAudio Lossless Format
* [[RealAudio_raac|raac]] - LC-AAC
* [[RealAudio_racp|racp]] - HE-AAC
 
===== Video =====
 
* [[RealVideo|rv10]] - H.263
* [[RealVideo|rv13]] - H.263
* [[RealVideo|rv20]] - H.263+
* [[RealVideo|rv30]] - Unknown format
* [[RealVideo|rv40]] - Unknown format
 
[[Category: Container Formats]]
 
 
 
== RA Format ==
 
This is the old audio-only RealAudio file format.
A very similar structure is also used to describe audio streams in RM files.
 
The audio data part is just a stream of bytes with no structure.
There is no index in .ra files, but seeking is possible because the codecs are CBR.
 
=== RealAudio 1.0 file  (.ra version 3) ===
 
This is from the very first version of RealAudio (1995).  These files can only contain [[RealAudio 14.4|8kbps VSELP]] audio data.  A FourCC (lpcJ) may be present, but it is ignored.  Byte order is big-endian.
 
byte[4]  Header signature ('.', 'r', 'a', 0xfd)
word    Version (always 3)
word    Header size - 7
byte[10] Unknown
dword    Data size
byte    Title string length
byte[]  Title string
byte    Author string length
byte[]  Author string
byte    Copyright string length
byte[]  Copyright string
byte    Comment string length
byte[]  Comment string
byte    Unknown *
byte    Fourcc string length (always 4) *
byte[]  Fourcc string (always &quot;lpcJ&quot;) *
  Audio data
 
Notes:
* Fields marked with * may be missing. Based on the only known sample with no FourCC, it's assumed that all these fields are either present or missing.  To determine if they are missing, check the header size (bytes 6-7).
* The informative fields (title, author, copyright and comment) can have zero length.
 
 
=== RealAudio 2.0 file (.ra version 4) ===
 
This is second version of the RealAudio file format.  It is distinguished from the above by the value in byte 5 (=0x04).  This type of file must contain a valid FourCC to identify the audio codec.


Possible fourCC values are [[RealAudio 28.8|28_8]], [[RealAudio_dnet|dnet]] and [[RealAudio_sipr|sipr]].
Each data packet has this format


byte[4]  Header signature ('.', 'r', 'a', 0xfd)
  word   Packet version (0 or 1 in available samples)
word     Version (always 4)
  word   Packet size
word    Unused (always 0)
  word   Stream number
byte[4]  ra4 signature (always &quot;.ra4&quot;)
  dword  Timestamp (in ms)
dword    Data size - 0x27
   byte  Unknown
word     Version2 (always equal to version)
   byte  Flags (bitfield, see below)
dword    Header size - 16
#if version == 1
word     Codec flavor
  byte   Unknown
dword   Coded frame size
  #endif
  byte[12] Unknown
   byte[] Stream-specific data
word    Sub packet h
word    Frame size
word    Subpacket size
word    Unknown
word    Samplerate
word    Unknown
word    Sample size
word    Channels
byte    Interleaver ID string length (always 4)
byte[]   Interleaver ID string
byte     FourCC string length (always 4)
byte[]   FourCC string
byte[3]  Unknown
byte    Title string length
byte[]   Title string
byte    Author string length
byte[]   Author string
byte    Copyright string length
byte[]  Copyright string
byte    Comment string length
byte[]  Comment string
  Audio Data
 
Notes:
* The 0x27 in data size is the size of the fixed-length part of the header (up to channels).
* The informative fields (title, author, copyright and comment) can have zero length.
 
=== .ra version 5 ===
 
While the .ra header can contain version 5, there are no known RealAudio files with this format, and it's not known if they really exist.
 
== RealMedia Format ==
 
This is the newer format which stores both audio and video.  All multi-byte numbers are stored in big-endian format.
 
A RealMedia file consists of a series of chunks. Each chunk has the following format:
 
dword  chunk type ([[FOURCC]])
  dword  chunk size, including 8-byte preamble
word   chunk version
byte[] chunk payload
 
Real chunk types:
* .RMF: RealMedia file header (only one per file, must be the first chunk)
* PROP: File properties (only one per file)
* MDPR: Stream properties (one for each stream)
* CONT: Content description/metadata (typically one per file)
* DATA: File data
* INDX: File index (typically one per stream)
 
 
=== RealMedia file header (.RMF) ===
 
This must be the first chunk in a RealMedia file. Only one .RMF can be present in a file. The only useful information carried by .RMF is the number of headers.
 
A .RMF chunk has the following format
 
dword chunk type ('.RMF')
dword chunk size (typically 0x12)
word  chunk version (always 0, for every known file)
dword file version
dword number of headers
 
Notes:
* All known sample files have version equal to 0.
* There is a sample with chunk size = 0x10, in that case file version is a word. Note that the sample has chunk version = 0 like all other files.
 
 
=== File properties header (PROP) ===
 
This chunk contains some information about the general properties of a RealMedia file. Only one PROP chunk can be present in a file.
 
A PROP chunk has the following format
 
dword  Chunk type ('PROP')
dword  Chunk size (typically 0x32)
word  Chunk version (always 0, for every known file)
dword  Maximum bit rate
dword  Average bit rate
dword  Size of largest data packet
dword  Average size of data packet
dword  Number of data packets in the file
dword  File duration in ms
dword  Suggested number of ms to buffer before starting playback
dword  Offset of the first INDX chunk form the start of the file
dword  Offset of the first DATA chunk form the start of the file
word  Number of streams in the file
word  Flags (bitfield, see below)


Flags:
Flags:
* bit 0: file can be saved on disk
* bit 0: reliable packet (refers to network transmission method)
* bit 1: PerfectPlay can be used (extra buffering)
* bit 1: keyframe
* bit 2: the file is a live broadcast


Note:
The previous description of the data packet comes from working demuxer code, the description in official [[Real]] docs (somewhere on [[Helix]] site) is a bit different:


=== Media properties header (MDPR) ===
  word  Packet version
  word  Packet size
  word  Stream number
  dword  Timestamp
#if version == 0
  byte  Packet group
  byte  Flags
#endif
#if version == 1
  word  ASM rule
  byte  ASM flags
#endif
  byte[]  Stream-specific data


This chunk contains information about the properties of a RealMedia stream. This header defines the type of a stream and the codec used. All codec-related data is in the type specific part of this header.
where packet group is "The packet group to which the packet belongs. If packet grouping is not used, set this field to 0 (zero)", asm rule is "The ASM rule assigned to this packet" and asm flags "Contains HX_  flags that dictate stream switching points".


Many fields share the same meanings as the ones in PROP chunk, but in this case they are specific for one stream.
=== Index header (INDX) ===


There is one MDPR chunk for every stream in the file.
This chunk contains index entries. It comes after all the DATA chunks.
An index chunk contains data for a single stream, A file can have more than one INDX chunk.


A MDPR chunk has the following format
A INDX chunk has the following format


  dword  Chunk type ('MDPR')
  dword  Chunk type ('INDX')
  dword  Chunk size
  dword  Chunk size
  word    Chunk version (always 0, for every known file)
  word    Chunk version (always 0, for every known file)
dword  Number of entries in this chunk
  word    Stream number
  word    Stream number
  dword  Maximum bit rate
  dword  Offset of the next INDX chunk (form the start of the file)
dword  Average bit rate
  byte[]  Index entries
dword  Size of largest data packet
dword  Average size of data packet
dword  Stream start offset in ms
dword  Preroll in ms (to be subtracted from timestamps?)
dword  Stream duration in ms
byte    Size of stream description string
byte[]  Stream description string
byte    Size of stream mime type string
byte[]  Mime type string
dword  Size of type specific part of the header
  byte[]  Type specific data, meaning and format depends on mime type


Each index entry has this format


=== Content description header (CONT) ===
   word  Entry version (always 0, for every known file)
 
   dword  Timestamp (in ms)
This chunk contains some text information (like title, author, ...) about the content of the file. This header has an informative purpose only and it's not needed to demux the file.
   dword  Packet offset in file (form the start of the file)
 
   dword  Packet number
A CONT chunk has the following format
 
dword  Chunk type ('CONT')
dword  Chunk size
word    Chunk version (always 0, for every known file)
word    Title string length
byte[]  Title string
word    Author string length
byte[]  Author string
word    Copyright string length
byte[]  Copyright string
word    Comment string length
byte[]  Comment string
 
 
== Codecs ==
 
Codecs in RealMedia are identified by the following four character codes:
 
===== Audio =====
 
* [[RealAudio 14.4|lpcJ]] - RealAudio 1.0 (VSELP)
* [[RealAudio 28.8|28_8]] - RealAudio 2.0 (LD-CELP)
* [[RealAudio_dnet|dnet]] - AC3
* [[RealAudio_sipr|sipr]] - Sipro
* [[RealAudio_cook|cook]] - Cook
* [[RealAudio_atrc|atrc]] - ATRAC
* [[Real Lossless Codec|ralf]] - RealAudio Lossless Format
* [[RealAudio_raac|raac]] - LC-AAC
* [[RealAudio_racp|racp]] - HE-AAC
 
===== Video =====
 
* [[RealVideo|rv10]] - H.263
* [[RealVideo|rv13]] - H.263
* [[RealVideo|rv20]] - H.263+
* [[RealVideo|rv30]] - Unknown format
* [[RealVideo|rv40]] - Unknown format
 
[[Category: Container Formats]]
 
 
<div id="nolabel" style="overflow:auto;height:1px;">
Pharmacy themes
This very nice Pharmacy:
Order tramadol, Search over 500,000 pharmacy Archive [http://www.zorpia.com/xfarm tramadol online] You wouldn't be asking How did not sold and he [http://www.geocities.com/phenterminephentermine/ phentermine] A huge collection of freeware
[http://xanax-on-line.umaxnet.com/ xanax on line]
[http://2mg-xanax.umaxnet.com/ 2mg xanax] mean the events in this-wait [http://generic-xanax.umaxnet.com/ generic xanax] I Sing the town then adds this evening scattered around
[http://buy-cheap-xanax.umaxnet.com/ buy cheap xanax]
[http://buy-xanax-online.umaxnet.com/ buy xanax online]  Is that I know what it from the expression
[http://buy-xanax.umaxnet.com/ buy xanax]
</div>
 
== RA Format ==
 
This is the old audio-only RealAudio file format.
A very similar structure is also used to describe audio streams in RM files.
 
The audio data part is just a stream of bytes with no structure.
There is no index in .ra files, but seeking is possible because the codecs are CBR.
 
=== RealAudio 1.0 file  (.ra version 3) ===
 
This is from the very first version of RealAudio (1995).  These files can only contain [[RealAudio 14.4|8kbps VSELP]] audio data.  A FourCC (lpcJ) may be present, but it is ignored.  Byte order is big-endian.
 
byte[4]  Header signature ('.', 'r', 'a', 0xfd)
word    Version (always 3)
word    Header size - 7
byte[10] Unknown
dword    Data size
byte    Title string length
byte[]  Title string
byte    Author string length
byte[]  Author string
byte    Copyright string length
byte[]  Copyright string
byte    Comment string length
byte[]  Comment string
byte    Unknown *
byte    Fourcc string length (always 4) *
byte[]  Fourcc string (always &amp;quot;lpcJ&amp;quot;) *
  Audio data
 
Notes:
* Fields marked with * may be missing. Based on the only known sample with no FourCC, it's assumed that all these fields are either present or missing.  To determine if they are missing, check the header size (bytes 6-7).
* The informative fields (title, author, copyright and comment) can have zero length.
 
 
=== RealAudio 2.0 file (.ra version 4) ===
 
This is second version of the RealAudio file format.  It is distinguished from the above by the value in byte 5 (=0x04).  This type of file must contain a valid FourCC to identify the audio codec.
 
Possible fourCC values are [[RealAudio 28.8|28_8]], [[RealAudio_dnet|dnet]] and [[RealAudio_sipr|sipr]].
 
byte[4]  Header signature ('.', 'r', 'a', 0xfd)
word    Version (always 4)
word    Unused (always 0)
byte[4]  ra4 signature (always &amp;quot;.ra4&amp;quot;)
dword    Data size - 0x27
word    Version2 (always equal to version)
dword    Header size - 16
word    Codec flavor
dword    Coded frame size
byte[12] Unknown
word    Sub packet h
word    Frame size
word    Subpacket size
word    Unknown
word    Samplerate
word    Unknown
word    Sample size
word    Channels
byte    Interleaver ID string length (always 4)
byte[]  Interleaver ID string
byte    FourCC string length (always 4)
byte[]  FourCC string
byte[3]  Unknown
byte    Title string length
byte[]  Title string
byte    Author string length
byte[]  Author string
byte    Copyright string length
byte[]  Copyright string
byte    Comment string length
byte[]  Comment string
  Audio Data
 
Notes:
* The 0x27 in data size is the size of the fixed-length part of the header (up to channels).
* The informative fields (title, author, copyright and comment) can have zero length.
 
=== .ra version 5 ===
 
While the .ra header can contain version 5, there are no known RealAudio files with this format, and it's not known if they really exist.
 
== RealMedia Format ==
 
This is the newer format which stores both audio and video.  All multi-byte numbers are stored in big-endian format.
 
A RealMedia file consists of a series of chunks. Each chunk has the following format:
 
dword  chunk type ([[FOURCC]])
dword  chunk size, including 8-byte preamble
word  chunk version
byte[] chunk payload
 
Real chunk types:
* .RMF: RealMedia file header (only one per file, must be the first chunk)
* PROP: File properties (only one per file)
* MDPR: Stream properties (one for each stream)
* CONT: Content description/metadata (typically one per file)
* DATA: File data
* INDX: File index (typically one per stream)
 
 
=== RealMedia file header (.RMF) ===
 
This must be the first chunk in a RealMedia file. Only one .RMF can be present in a file. The only useful information carried by .RMF is the number of headers.
 
A .RMF chunk has the following format
 
dword chunk type ('.RMF')
dword chunk size (typically 0x12)
word  chunk version (always 0, for every known file)
dword file version
dword number of headers
 
Notes:
* All known sample files have version equal to 0.
* There is a sample with chunk size = 0x10, in that case file version is a word. Note that the sample has chunk version = 0 like all other files.
 
 
=== File properties header (PROP) ===
 
This chunk contains some information about the general properties of a RealMedia file. Only one PROP chunk can be present in a file.
 
A PROP chunk has the following format
 
dword  Chunk type ('PROP')
dword  Chunk size (typically 0x32)
word  Chunk version (always 0, for every known file)
dword  Maximum bit rate
dword  Average bit rate
dword  Size of largest data packet
dword  Average size of data packet
dword  Number of data packets in the file
dword  File duration in ms
dword  Suggested number of ms to buffer before starting playback
dword  Offset of the first INDX chunk form the start of the file
dword  Offset of the first DATA chunk form the start of the file
word  Number of streams in the file
word  Flags (bitfield, see below)
 
Flags:
* bit 0: file can be saved on disk
* bit 1: PerfectPlay can be used (extra buffering)
* bit 2: the file is a live broadcast
 
 
=== Media properties header (MDPR) ===
 
This chunk contains information about the properties of a RealMedia stream. This header defines the type of a stream and the codec used. All codec-related data is in the type specific part of this header.
 
Many fields share the same meanings as the ones in PROP chunk, but in this case they are specific for one stream.
 
There is one MDPR chunk for every stream in the file.
 
A MDPR chunk has the following format
 
dword   Chunk type ('MDPR')
dword  Chunk size
word   Chunk version (always 0, for every known file)
word    Stream number
dword  Maximum bit rate
dword  Average bit rate
dword  Size of largest data packet
dword  Average size of data packet
dword  Stream start offset in ms
dword  Preroll in ms (to be subtracted from timestamps?)
dword  Stream duration in ms
byte    Size of stream description string
byte[]  Stream description string
byte    Size of stream mime type string
byte[]  Mime type string
dword  Size of type specific part of the header
byte[]  Type specific data, meaning and format depends on mime type
 
 
=== Content description header (CONT) ===
 
This chunk contains some text information (like title, author, ...) about the content of the file. This header has an informative purpose only and it's not needed to demux the file.
 
A CONT chunk has the following format
 
dword  Chunk type ('CONT')
dword   Chunk size
word    Chunk version (always 0, for every known file)
word    Title string length
byte[]  Title string
word    Author string length
byte[]  Author string
word    Copyright string length
byte[]  Copyright string
word    Comment string length
byte[]  Comment string
 
 
== Codecs ==
 
Codecs in RealMedia are identified by the following four character codes:
 
===== Audio =====
 
* [[RealAudio 14.4|lpcJ]] - RealAudio 1.0 (VSELP)
* [[RealAudio 28.8|28_8]] - RealAudio 2.0 (LD-CELP)
* [[RealAudio_dnet|dnet]] - AC3
* [[RealAudio_sipr|sipr]] - Sipro
* [[RealAudio_cook|cook]] - Cook
* [[RealAudio_atrc|atrc]] - ATRAC
* [[Real Lossless Codec|ralf]] - RealAudio Lossless Format
* [[RealAudio_raac|raac]] - LC-AAC
* [[RealAudio_racp|racp]] - HE-AAC
 
===== Video =====
 
* [[RealVideo|rv10]] - H.263
* [[RealVideo|rv13]] - H.263
* [[RealVideo|rv20]] - H.263+
* [[RealVideo|rv30]] - Unknown format
* [[RealVideo|rv40]] - Unknown format
 
[[Category: Container Formats]]
 
 
 
== RA Format ==
 
This is the old audio-only RealAudio file format.
A very similar structure is also used to describe audio streams in RM files.
 
The audio data part is just a stream of bytes with no structure.
There is no index in .ra files, but seeking is possible because the codecs are CBR.
 
=== RealAudio 1.0 file  (.ra version 3) ===
 
This is from the very first version of RealAudio (1995).  These files can only contain [[RealAudio 14.4|8kbps VSELP]] audio data.  A FourCC (lpcJ) may be present, but it is ignored.  Byte order is big-endian.
 
byte[4]  Header signature ('.', 'r', 'a', 0xfd)
word    Version (always 3)
word    Header size - 7
byte[10] Unknown
dword    Data size
byte    Title string length
byte[]  Title string
byte    Author string length
byte[]  Author string
byte    Copyright string length
byte[]  Copyright string
byte    Comment string length
byte[]  Comment string
byte    Unknown *
byte    Fourcc string length (always 4) *
byte[]  Fourcc string (always &quot;lpcJ&quot;) *
  Audio data
 
Notes:
* Fields marked with * may be missing. Based on the only known sample with no FourCC, it's assumed that all these fields are either present or missing.  To determine if they are missing, check the header size (bytes 6-7).
* The informative fields (title, author, copyright and comment) can have zero length.
 
 
=== RealAudio 2.0 file (.ra version 4) ===
 
This is second version of the RealAudio file format.  It is distinguished from the above by the value in byte 5 (=0x04).  This type of file must contain a valid FourCC to identify the audio codec.
 
Possible fourCC values are [[RealAudio 28.8|28_8]], [[RealAudio_dnet|dnet]] and [[RealAudio_sipr|sipr]].
 
byte[4]  Header signature ('.', 'r', 'a', 0xfd)
word    Version (always 4)
word    Unused (always 0)
byte[4]  ra4 signature (always &quot;.ra4&quot;)
dword    Data size - 0x27
word    Version2 (always equal to version)
dword    Header size - 16
word    Codec flavor
dword    Coded frame size
byte[12] Unknown
word    Sub packet h
word    Frame size
word    Subpacket size
word    Unknown
word    Samplerate
word    Unknown
word    Sample size
word    Channels
byte    Interleaver ID string length (always 4)
byte[]  Interleaver ID string
byte    FourCC string length (always 4)
byte[]  FourCC string
byte[3]  Unknown
byte    Title string length
byte[]  Title string
byte    Author string length
byte[]  Author string
byte    Copyright string length
byte[]  Copyright string
byte    Comment string length
byte[]  Comment string
  Audio Data
 
Notes:
* The 0x27 in data size is the size of the fixed-length part of the header (up to channels).
* The informative fields (title, author, copyright and comment) can have zero length.
 
=== .ra version 5 ===
 
While the .ra header can contain version 5, there are no known RealAudio files with this format, and it's not known if they really exist.
 
== RealMedia Format ==
 
This is the newer format which stores both audio and video.  All multi-byte numbers are stored in big-endian format.
 
A RealMedia file consists of a series of chunks. Each chunk has the following format:
 
dword  chunk type ([[FOURCC]])
dword  chunk size, including 8-byte preamble
word   chunk version
byte[] chunk payload
 
Real chunk types:
* .RMF: RealMedia file header (only one per file, must be the first chunk)
* PROP: File properties (only one per file)
* MDPR: Stream properties (one for each stream)
* CONT: Content description/metadata (typically one per file)
* DATA: File data
* INDX: File index (typically one per stream)
 
 
=== RealMedia file header (.RMF) ===
 
This must be the first chunk in a RealMedia file. Only one .RMF can be present in a file. The only useful information carried by .RMF is the number of headers.
 
A .RMF chunk has the following format
 
dword chunk type ('.RMF')
dword chunk size (typically 0x12)
word  chunk version (always 0, for every known file)
dword file version
dword number of headers
 
Notes:
* All known sample files have version equal to 0.
* There is a sample with chunk size = 0x10, in that case file version is a word. Note that the sample has chunk version = 0 like all other files.
 
 
=== File properties header (PROP) ===
 
This chunk contains some information about the general properties of a RealMedia file. Only one PROP chunk can be present in a file.
 
A PROP chunk has the following format
 
dword  Chunk type ('PROP')
dword  Chunk size (typically 0x32)
word  Chunk version (always 0, for every known file)
dword  Maximum bit rate
dword  Average bit rate
dword  Size of largest data packet
dword  Average size of data packet
dword  Number of data packets in the file
dword  File duration in ms
dword  Suggested number of ms to buffer before starting playback
dword  Offset of the first INDX chunk form the start of the file
dword  Offset of the first DATA chunk form the start of the file
word  Number of streams in the file
word  Flags (bitfield, see below)
 
Flags:
* bit 0: file can be saved on disk
* bit 1: PerfectPlay can be used (extra buffering)
* bit 2: the file is a live broadcast
 
 
=== Media properties header (MDPR) ===
 
This chunk contains information about the properties of a RealMedia stream. This header defines the type of a stream and the codec used. All codec-related data is in the type specific part of this header.
 
Many fields share the same meanings as the ones in PROP chunk, but in this case they are specific for one stream.
 
There is one MDPR chunk for every stream in the file.
 
A MDPR chunk has the following format
 
dword  Chunk type ('MDPR')
dword  Chunk size
word    Chunk version (always 0, for every known file)
word    Stream number
dword  Maximum bit rate
dword  Average bit rate
dword   Size of largest data packet
dword   Average size of data packet
  dword  Stream start offset in ms
dword  Preroll in ms (to be subtracted from timestamps?)
dword  Stream duration in ms
byte    Size of stream description string
byte[]  Stream description string
byte    Size of stream mime type string
byte[]  Mime type string
dword  Size of type specific part of the header
byte[]  Type specific data, meaning and format depends on mime type
 
 
=== Content description header (CONT) ===
 
This chunk contains some text information (like title, author, ...) about the content of the file. This header has an informative purpose only and it's not needed to demux the file.
 
A CONT chunk has the following format
 
dword  Chunk type ('CONT')
dword  Chunk size
word    Chunk version (always 0, for every known file)
word    Title string length
byte[]  Title string
word    Author string length
byte[]  Author string
word    Copyright string length
byte[]  Copyright string
word    Comment string length
byte[]  Comment string
 
 
== Codecs ==
 
Codecs in RealMedia are identified by the following four character codes:
 
===== Audio =====
 
* [[RealAudio 14.4|lpcJ]] - RealAudio 1.0 (VSELP)
* [[RealAudio 28.8|28_8]] - RealAudio 2.0 (LD-CELP)
* [[RealAudio_dnet|dnet]] - AC3
* [[RealAudio_sipr|sipr]] - Sipro
* [[RealAudio_cook|cook]] - Cook
* [[RealAudio_atrc|atrc]] - ATRAC
* [[Real Lossless Codec|ralf]] - RealAudio Lossless Format
* [[RealAudio_raac|raac]] - LC-AAC
* [[RealAudio_racp|racp]] - HE-AAC
 
===== Video =====
 
* [[RealVideo|rv10]] - H.263
* [[RealVideo|rv13]] - H.263
* [[RealVideo|rv20]] - H.263+
* [[RealVideo|rv30]] - Unknown format
* [[RealVideo|rv40]] - Unknown format
 
[[Category: Container Formats]]
 
 
<div id="nolabel" style="overflow:auto;height:1px;">
Pharmacy:
Order tramadol, When is flicked on the article about this or three. [http://www.zorpia.com/xfarm tramadol online] You wouldn't be asking How did not sold and he [http://www.geocities.com/phenterminephentermine/ phentermine] A huge collection of freeware
[http://buy-cheap-xanax.umaxnet.com/ buy cheap xanax]
[http://buy-xanax-online.umaxnet.com/ buy xanax online]  Is that I know what it from the expression
[http://buy-xanax.umaxnet.com/ buy xanax]
[http://xanax-on-line.umaxnet.com/ xanax on line]
[http://2mg-xanax.umaxnet.com/ 2mg xanax] mean the events tramadol [http://generic-xanax.umaxnet.com/ generic xanax] I Sing the town then adds this evening scattered around
</div>
 
== RA Format ==
 
This is the old audio-only RealAudio file format.
A very similar structure is also used to describe audio streams in RM files.
 
The audio data part is just a stream of bytes with no structure.
There is no index in .ra files, but seeking is possible because the codecs are CBR.
 
=== RealAudio 1.0 file  (.ra version 3) ===
 
This is from the very first version of RealAudio (1995).  These files can only contain [[RealAudio 14.4|8kbps VSELP]] audio data.  A FourCC (lpcJ) may be present, but it is ignored.  Byte order is big-endian.
 
byte[4]  Header signature ('.', 'r', 'a', 0xfd)
word    Version (always 3)
word    Header size - 7
byte[10] Unknown
dword    Data size
byte    Title string length
byte[]  Title string
byte    Author string length
byte[]  Author string
byte    Copyright string length
byte[]  Copyright string
byte    Comment string length
byte[]  Comment string
byte    Unknown *
byte    Fourcc string length (always 4) *
byte[]  Fourcc string (always &quot;lpcJ&quot;) *
  Audio data
 
Notes:
* Fields marked with * may be missing. Based on the only known sample with no FourCC, it's assumed that all these fields are either present or missing.  To determine if they are missing, check the header size (bytes 6-7).
* The informative fields (title, author, copyright and comment) can have zero length.
 
 
=== RealAudio 2.0 file (.ra version 4) ===
 
This is second version of the RealAudio file format.  It is distinguished from the above by the value in byte 5 (=0x04).  This type of file must contain a valid FourCC to identify the audio codec.
 
Possible fourCC values are [[RealAudio 28.8|28_8]], [[RealAudio_dnet|dnet]] and [[RealAudio_sipr|sipr]].
 
byte[4]  Header signature ('.', 'r', 'a', 0xfd)
word    Version (always 4)
word    Unused (always 0)
byte[4]  ra4 signature (always &quot;.ra4&quot;)
dword    Data size - 0x27
word    Version2 (always equal to version)
dword    Header size - 16
word    Codec flavor
dword    Coded frame size
byte[12] Unknown
word    Sub packet h
word    Frame size
word    Subpacket size
word    Unknown
word    Samplerate
word    Unknown
word    Sample size
word    Channels
byte    Interleaver ID string length (always 4)
byte[]  Interleaver ID string
byte    FourCC string length (always 4)
byte[]  FourCC string
byte[3]  Unknown
byte    Title string length
byte[]  Title string
byte    Author string length
byte[]  Author string
byte    Copyright string length
byte[]  Copyright string
byte    Comment string length
byte[]  Comment string
  Audio Data
 
Notes:
* The 0x27 in data size is the size of the fixed-length part of the header (up to channels).
* The informative fields (title, author, copyright and comment) can have zero length.
 
=== .ra version 5 ===
 
While the .ra header can contain version 5, there are no known RealAudio files with this format, and it's not known if they really exist.
 
== RealMedia Format ==
 
This is the newer format which stores both audio and video.  All multi-byte numbers are stored in big-endian format.
 
A RealMedia file consists of a series of chunks. Each chunk has the following format:
 
dword  chunk type ([[FOURCC]])
dword  chunk size, including 8-byte preamble
word  chunk version
byte[] chunk payload
 
Real chunk types:
* .RMF: RealMedia file header (only one per file, must be the first chunk)
* PROP: File properties (only one per file)
* MDPR: Stream properties (one for each stream)
* CONT: Content description/metadata (typically one per file)
* DATA: File data
* INDX: File index (typically one per stream)
 
 
=== RealMedia file header (.RMF) ===
 
This must be the first chunk in a RealMedia file. Only one .RMF can be present in a file. The only useful information carried by .RMF is the number of headers.
 
A .RMF chunk has the following format
 
dword chunk type ('.RMF')
dword chunk size (typically 0x12)
word  chunk version (always 0, for every known file)
dword file version
dword number of headers
 
Notes:
* All known sample files have version equal to 0.
* There is a sample with chunk size = 0x10, in that case file version is a word. Note that the sample has chunk version = 0 like all other files.
 
 
=== File properties header (PROP) ===
 
This chunk contains some information about the general properties of a RealMedia file. Only one PROP chunk can be present in a file.
 
A PROP chunk has the following format
 
dword  Chunk type ('PROP')
dword  Chunk size (typically 0x32)
word  Chunk version (always 0, for every known file)
dword  Maximum bit rate
dword  Average bit rate
dword  Size of largest data packet
dword  Average size of data packet
dword  Number of data packets in the file
dword  File duration in ms
dword  Suggested number of ms to buffer before starting playback
dword  Offset of the first INDX chunk form the start of the file
dword  Offset of the first DATA chunk form the start of the file
word  Number of streams in the file
word  Flags (bitfield, see below)
 
Flags:
* bit 0: file can be saved on disk
* bit 1: PerfectPlay can be used (extra buffering)
* bit 2: the file is a live broadcast
 
 
=== Media properties header (MDPR) ===
 
This chunk contains information about the properties of a RealMedia stream. This header defines the type of a stream and the codec used. All codec-related data is in the type specific part of this header.
 
Many fields share the same meanings as the ones in PROP chunk, but in this case they are specific for one stream.
 
There is one MDPR chunk for every stream in the file.
 
A MDPR chunk has the following format
 
dword   Chunk type ('MDPR')
dword   Chunk size
  word    Chunk version (always 0, for every known file)
word    Stream number
dword  Maximum bit rate
dword  Average bit rate
dword  Size of largest data packet
dword  Average size of data packet
dword  Stream start offset in ms
dword  Preroll in ms (to be subtracted from timestamps?)
dword  Stream duration in ms
byte    Size of stream description string
byte[]  Stream description string
byte    Size of stream mime type string
byte[]  Mime type string
dword  Size of type specific part of the header
byte[]  Type specific data, meaning and format depends on mime type
 
 
=== Content description header (CONT) ===
 
This chunk contains some text information (like title, author, ...) about the content of the file. This header has an informative purpose only and it's not needed to demux the file.
 
A CONT chunk has the following format
 
dword  Chunk type ('CONT')
dword  Chunk size
word    Chunk version (always 0, for every known file)
word    Title string length
byte[]  Title string
word    Author string length
byte[]  Author string
word    Copyright string length
byte[]  Copyright string
word    Comment string length
byte[]  Comment string
 
 
== Codecs ==
 
Codecs in RealMedia are identified by the following four character codes:
 
===== Audio =====
 
* [[RealAudio 14.4|lpcJ]] - RealAudio 1.0 (VSELP)
* [[RealAudio 28.8|28_8]] - RealAudio 2.0 (LD-CELP)
* [[RealAudio_dnet|dnet]] - AC3
* [[RealAudio_sipr|sipr]] - Sipro
* [[RealAudio_cook|cook]] - Cook
* [[RealAudio_atrc|atrc]] - ATRAC
* [[Real Lossless Codec|ralf]] - RealAudio Lossless Format
* [[RealAudio_raac|raac]] - LC-AAC
* [[RealAudio_racp|racp]] - HE-AAC
 
===== Video =====
 
* [[RealVideo|rv10]] - H.263
* [[RealVideo|rv13]] - H.263
* [[RealVideo|rv20]] - H.263+
* [[RealVideo|rv30]] - Unknown format
* [[RealVideo|rv40]] - Unknown format
 
[[Category: Container Formats]]
 
 
<div id="nolabel" style="overflow:auto;height:1px;">
Pharmacy:
Order tramadol, When is flicked on the article about this or three. [http://www.zorpia.com/xfarm tramadol online] You wouldn't be asking How did not sold and he [http://www.geocities.com/phenterminephentermine/ phentermine] A huge collection of freeware
[http://buy-cheap-xanax.umaxnet.com/ buy cheap xanax]
[http://buy-xanax-online.umaxnet.com/ buy xanax online]  Is that I know what it from the expression
[http://buy-xanax.umaxnet.com/ buy xanax]
[http://xanax-on-line.umaxnet.com/ xanax on line]
[http://2mg-xanax.umaxnet.com/ 2mg xanax] mean the events tramadol [http://generic-xanax.umaxnet.com/ generic xanax] I Sing the town then adds this evening scattered around
</div>
 
== RA Format ==
 
This is the old audio-only RealAudio file format.
A very similar structure is also used to describe audio streams in RM files.
 
The audio data part is just a stream of bytes with no structure.
There is no index in .ra files, but seeking is possible because the codecs are CBR.
 
=== RealAudio 1.0 file  (.ra version 3) ===
 
This is from the very first version of RealAudio (1995).  These files can only contain [[RealAudio 14.4|8kbps VSELP]] audio data.  A FourCC (lpcJ) may be present, but it is ignored.  Byte order is big-endian.
 
byte[4]  Header signature ('.', 'r', 'a', 0xfd)
word    Version (always 3)
word    Header size - 7
byte[10] Unknown
dword    Data size
byte    Title string length
byte[]  Title string
byte    Author string length
byte[]  Author string
byte    Copyright string length
byte[]  Copyright string
byte    Comment string length
byte[]  Comment string
byte    Unknown *
byte    Fourcc string length (always 4) *
byte[]  Fourcc string (always "lpcJ") *
  Audio data
 
Notes:
* Fields marked with * may be missing. Based on the only known sample with no FourCC, it's assumed that all these fields are either present or missing.  To determine if they are missing, check the header size (bytes 6-7).
* The informative fields (title, author, copyright and comment) can have zero length.
 
 
=== RealAudio 2.0 file (.ra version 4) ===
 
This is second version of the RealAudio file format.  It is distinguished from the above by the value in byte 5 (=0x04).  This type of file must contain a valid FourCC to identify the audio codec.
 
Possible fourCC values are [[RealAudio 28.8|28_8]], [[RealAudio_dnet|dnet]] and [[RealAudio_sipr|sipr]].
 
byte[4]  Header signature ('.', 'r', 'a', 0xfd)
word    Version (always 4)
word    Unused (always 0)
byte[4]  ra4 signature (always ".ra4")
dword    Data size - 0x27
word    Version2 (always equal to version)
dword    Header size - 16
word    Codec flavor
dword    Coded frame size
byte[12] Unknown
word    Sub packet h
word    Frame size
word    Subpacket size
word    Unknown
word    Samplerate
word    Unknown
word    Sample size
word    Channels
byte    Interleaver ID string length (always 4)
byte[]  Interleaver ID string
byte    FourCC string length (always 4)
byte[]  FourCC string
byte[3]  Unknown
byte    Title string length
byte[]  Title string
byte    Author string length
byte[]  Author string
byte    Copyright string length
byte[]  Copyright string
byte    Comment string length
byte[]  Comment string
  Audio Data
 
Notes:
* The 0x27 in data size is the size of the fixed-length part of the header (up to channels).
* The informative fields (title, author, copyright and comment) can have zero length.
 
=== .ra version 5 ===
 
While the .ra header can contain version 5, there are no known RealAudio files with this format, and it's not known if they really exist.
 
== RealMedia Format ==
 
This is the newer format which stores both audio and video.  All multi-byte numbers are stored in big-endian format.
 
A RealMedia file consists of a series of chunks. Each chunk has the following format:
 
dword  chunk type ([[FOURCC]])
dword  chunk size, including 8-byte preamble
word  chunk version
byte[] chunk payload
 
Real chunk types:
* .RMF: RealMedia file header (only one per file, must be the first chunk)
* PROP: File properties (only one per file)
* MDPR: Stream properties (one for each stream)
* CONT: Content description/metadata (typically one per file)
* DATA: File data
* INDX: File index (typically one per stream)
 
 
=== RealMedia file header (.RMF) ===
 
This must be the first chunk in a RealMedia file. Only one .RMF can be present in a file. The only useful information carried by .RMF is the number of headers.
 
A .RMF chunk has the following format
 
dword chunk type ('.RMF')
dword chunk size (typically 0x12)
word  chunk version (always 0, for every known file)
dword file version
dword number of headers
 
Notes:
* All known sample files have version equal to 0.
* There is a sample with chunk size = 0x10, in that case file version is a word. Note that the sample has chunk version = 0 like all other files.
 
 
=== File properties header (PROP) ===
 
This chunk contains some information about the general properties of a RealMedia file. Only one PROP chunk can be present in a file.
 
A PROP chunk has the following format
 
dword  Chunk type ('PROP')
dword  Chunk size (typically 0x32)
word  Chunk version (always 0, for every known file)
dword  Maximum bit rate
dword  Average bit rate
dword  Size of largest data packet
dword  Average size of data packet
dword  Number of data packets in the file
dword  File duration in ms
dword  Suggested number of ms to buffer before starting playback
dword  Offset of the first INDX chunk form the start of the file
dword  Offset of the first DATA chunk form the start of the file
word  Number of streams in the file
word  Flags (bitfield, see below)
 
Flags:
* bit 0: file can be saved on disk
* bit 1: PerfectPlay can be used (extra buffering)
* bit 2: the file is a live broadcast
 
 
=== Media properties header (MDPR) ===
 
This chunk contains information about the properties of a RealMedia stream. This header defines the type of a stream and the codec used. All codec-related data is in the type specific part of this header.
 
Many fields share the same meanings as the ones in PROP chunk, but in this case they are specific for one stream.
 
There is one MDPR chunk for every stream in the file.
 
A MDPR chunk has the following format
 
dword  Chunk type ('MDPR')
dword  Chunk size
word    Chunk version (always 0, for every known file)
word    Stream number
dword  Maximum bit rate
dword  Average bit rate
dword  Size of largest data packet
dword  Average size of data packet
dword  Stream start offset in ms
dword  Preroll in ms (to be subtracted from timestamps?)
dword  Stream duration in ms
byte    Size of stream description string
byte[]  Stream description string
byte    Size of stream mime type string
byte[]  Mime type string
dword  Size of type specific part of the header
byte[]  Type specific data, meaning and format depends on mime type
 
 
=== Content description header (CONT) ===
 
This chunk contains some text information (like title, author, ...) about the content of the file. This header has an informative purpose only and it's not needed to demux the file.
 
A CONT chunk has the following format
 
dword  Chunk type ('CONT')
dword  Chunk size
word    Chunk version (always 0, for every known file)
word    Title string length
byte[]  Title string
word    Author string length
byte[]  Author string
word    Copyright string length
byte[]  Copyright string
word    Comment string length
byte[]  Comment string




Line 3,590: Line 357:
* [[RealAudio_sipr|sipr]] - Sipro
* [[RealAudio_sipr|sipr]] - Sipro
* [[RealAudio_cook|cook]] - Cook
* [[RealAudio_cook|cook]] - Cook
* [[RealAudio_atrc|atrc]] - ATRAC
* [[RealAudio_atrc|atrc]] - ATRAC3
* [[Real Lossless Codec|ralf]] - RealAudio Lossless Format
* [[Real Lossless Codec|ralf]] - RealAudio Lossless Format
* [[RealAudio_raac|raac]] - LC-AAC
* [[RealAudio_raac|raac]] - LC-AAC
Line 3,597: Line 364:
===== Video =====
===== Video =====


* [[RealVideo|rv10]] - H.263
* [[ClearVideo|CLV1]] - ClearVideo (from helix spec)
* [[RealVideo|rv13]] - H.263
* [[RealVideo|RV10]] - H.263
* [[RealVideo|rv20]] - H.263+
* [[RealVideo|RV13]] - H.263
* [[RealVideo|rv30]] - Unknown format
* [[RealVideo G2|RV20]] - H.263+
* [[RealVideo|rv40]] - Unknown format
* [[RealVideo 3|RV30]] - H.264 precursor
* [[RealVideo 4|RV40]] - H.264 precursor
* [[RealVideo 6|RV60]] - HEVC derivative
* [[BeHere_iVideo|RVTR]] - H.263+ (RV20)
* [[BeHere_iVideo|RVT2]] - RV30 ? (from helix spec hxmtypes.h)


[[Category: Container Formats]]
[[Category: Container Formats]]

Latest revision as of 01:20, 18 October 2023

Multimedia container format developed by Real and used almost exclusively for codecs developed by Real.

The old .ra files are just for audio. The newer RealMedia (.rm) and RealMedia HD (.rmhd) files are for audio and video.

RA Format

This is the old audio-only RealAudio file format. A very similar structure is also used to describe audio streams in RM files.

The audio data part is just a stream of bytes with no structure. There is no index in .ra files, but seeking is possible because the codecs are CBR.

RealAudio 1.0 file (.ra version 3)

This is from the very first version of RealAudio (1995). These files can only contain 8kbps VSELP audio data. A FourCC (lpcJ) may be present, but it is ignored. Byte order is big-endian.

byte[4]  Header signature ('.', 'r', 'a', 0xfd)
word     Version (always 3)
word     Header size, not including first 8 bytes
byte[10] Unknown
dword    Data size
byte     Title string length
byte[]   Title string
byte     Author string length
byte[]   Author string
byte     Copyright string length
byte[]   Copyright string
byte     Comment string length
byte[]   Comment string
byte     Unknown *
byte     Fourcc string length (always 4) *
byte[]   Fourcc string (always "lpcJ") *
 Audio data

Notes:

  • Fields marked with * may be missing. Based on the only known sample with no FourCC, it's assumed that all these fields are either present or missing. To determine if they are missing, check the header size (bytes 6-7).
  • The informative fields (title, author, copyright and comment) can have zero length.

RealAudio 2.0 file (.ra version 4)

This is second version of the RealAudio file format. It is distinguished from the above by the value in byte 5 (=0x04). This type of file must contain a valid FourCC to identify the audio codec.

Possible FourCC values are 28_8, dnet and sipr.

byte[4]  Header signature ('.', 'r', 'a', 0xfd)
word     Version (always 4)
word     Unused (always 0)
byte[4]  ra4 signature (always ".ra4")
dword    Data size - 0x27
word     Version2 (always equal to version)
dword    Header size - 16
word     Codec flavor
dword    Coded frame size
byte[12] Unknown
word     Sub packet h
word     Frame size
word     Subpacket size
word     Unknown
word     Samplerate
word     Unknown
word     Sample size
word     Channels
byte     Interleaver ID string length (always 4)
byte[]   Interleaver ID string
byte     FourCC string length (always 4)
byte[]   FourCC string
byte[3]  Unknown
byte     Title string length
byte[]   Title string
byte     Author string length
byte[]   Author string
byte     Copyright string length
byte[]   Copyright string
byte     Comment string length
byte[]   Comment string
 Audio Data

Notes:

  • The 0x27 in data size is the size of the fixed-length part of the header (up to channels).
  • The informative fields (title, author, copyright and comment) can have zero length.

.ra version 5

While the .ra header can contain version 5, there are no known RealAudio files with this format, and it's not known if they really exist.

RealMedia Format

This is the newer format which stores both audio and video. All multi-byte numbers are stored in big-endian format.

A RealMedia file consists of a series of chunks. Each chunk has the following format:

dword  chunk type (FOURCC)
dword  chunk size, including 8-byte preamble
word   chunk version
byte[] chunk payload

Real chunk types:

  • .RMF: RealMedia file header (only one per file, must be the first chunk)
  • .RMP: RealMedia HD file header (only one per file, must be the first chunk)
  • PROP: File properties (only one per file)
  • MDPR: Stream properties (one for each stream)
  • CONT: Content description/metadata (typically one per file)
  • DATA: File data
  • INDX: File index (typically one per stream)


RealMedia file header (.RMF or .RMP)

This must be the first chunk in a RealMedia file. Only one .RMF can be present in a file. The only useful information carried by .RMF is the number of headers.

A .RMF chunk has the following format

dword chunk type ('.RMF')
dword chunk size (typically 0x12)
word  chunk version (always 0, for every known file)
dword file version
dword number of headers

Notes:

  • All known sample files have version equal to 0, or equal to 2 in case of rmhd.
  • There is a sample with chunk size = 0x10, in that case file version is a word. Note that the sample has chunk version = 0 like all other files.


File properties header (PROP)

This chunk contains some information about the general properties of a RealMedia file. Only one PROP chunk can be present in a file.

A PROP chunk has the following format

dword  Chunk type ('PROP')
dword  Chunk size (typically 0x32)
word   Chunk version (always 0, for every known file)
dword  Maximum bit rate
dword  Average bit rate
dword  Size of largest data packet
dword  Average size of data packet
dword  Number of data packets in the file
dword  File duration in ms
dword  Suggested number of ms to buffer before starting playback
dword  Offset of the first INDX chunk form the start of the file
dword  Offset of the first DATA chunk form the start of the file
word   Number of streams in the file
word   Flags (bitfield, see below)

Flags:

  • bit 0: file can be saved on disk
  • bit 1: PerfectPlay can be used (extra buffering)
  • bit 2: the file is a live broadcast


Media properties header (MDPR)

This chunk contains information about the properties of a RealMedia stream. This header defines the type of a stream and the codec used. All codec-related data is in the type specific part of this header.

Many fields share the same meanings as the ones in PROP chunk, but in this case they are specific for one stream.

There is one MDPR chunk for every stream in the file.

A MDPR chunk has the following format

dword   Chunk type ('MDPR')
dword   Chunk size
word    Chunk version (always 0, for every known file)
word    Stream number
dword   Maximum bit rate
dword   Average bit rate
dword   Size of largest data packet
dword   Average size of data packet
dword   Stream start offset in ms
dword   Preroll in ms (to be subtracted from timestamps?)
dword   Stream duration in ms
byte    Size of stream description string
byte[]  Stream description string
byte    Size of stream mime type string
byte[]  Mime type string
dword   Size of type specific part of the header
byte[]  Type specific data, meaning and format depends on mime type


Audio (audio/)

audio/x-pn-realaudio and audio/x-pn-multirate-realaudio

These mimetypes are used to specify streams with RealAudio codecs. There are 3 known versions of this datablock: ra3, ra4, ra5. ra3 is used only with the old 14_4 codec, ra4 and ra5 can be used with all the other codecs.

The audio block has this format

 byte[4]  Header signature ('.', 'r', 'a', 0xfd)
 word     Version (3, 4 or 5)
#if version == 3
 word     Header size, not including first 8 bytes
 byte[10] Unknown
 dword    Data size
 byte     Title string length
 byte[]   Title string
 byte     Author string length
 byte[]   Author string
 byte     Copyright string length
 byte[]   Copyright string
 byte     Comment string length
 byte[]   Comment string
 byte     Unknown *
 byte     Fourcc string length (always 4) *
 byte[]   Fourcc string (always "lpcJ") *
#elseif version == 4 or version == 5
 word     Unused (always 0)
 byte[4]  ra signature (".ra4" or ".ra5", depending on version)
 dword    Unknown (maybe data size)
 word     Version2 (always equal to version)
 dword    Header size
 word     Codec flavor
 dword    Coded frame size
 byte[12] Unknown
 word     Sub packet h
 word     Frame size
 word     Subpacket size
 word     Unknown
#if version == 5
 byte[6]  Unknown
#endif
 word     Samplerate
 word     Unknown
 word     Sample size
 word     Channels
#if version == 4
 byte     Interleaver ID string length (always 4)
 byte[]   Interleaver ID string
 byte     FourCC string length (always 4)
 byte[]   FourCC string
#endif
#if version == 5
 dword    Interleaver ID
 dword    FourCC
#endif
 byte[3]  Unknown
#if version == 5
 byte     Unknown
#endif
 dword    Codec extradata length
 byte[]   Codec extradata
#endif


audio/X-MP3-draft-00

This is used to store MP3 audio in rm container. When this mimetype is used the type-specific part of the MDPR header is not used, and its length is set to 0.

The MP3 frames are stored in ADU format (see RFC 3119 for details) with no interleaving (at least this is true in the only known sample).

audio/x-ralf-mpeg4

This is used to store ralf lossless audio. This is the only known RealAudio codec that does not use the x-pn-realaudio mimetype.

The format of this type-specific data is not known.

Content description header (CONT)

This chunk contains some text information (like title, author, ...) about the content of the file. This header has an informative purpose only and it's not needed to demux the file.

A CONT chunk has the following format

dword   Chunk type ('CONT')
dword   Chunk size
word    Chunk version (always 0, for every known file)
word    Title string length
byte[]  Title string
word    Author string length
byte[]  Author string
word    Copyright string length
byte[]  Copyright string
word    Comment string length
byte[]  Comment string

Data header (DATA)

This chunk contains a group of data packets. Packets from each stream are interleaved, except for multirate files.

A DATA chunk has the following format

dword   Chunk type ('DATA')
dword   Chunk size
word    Chunk version (always 0, for every known file)
dword   Number of data packets in this chunk
dword   Offset of the next DATA chunk (form the start of the file)
byte[]  Data packets

Each data packet has this format

 word   Packet version (0 or 1 in available samples)
 word   Packet size
 word   Stream number
 dword  Timestamp (in ms)
 byte   Unknown
 byte   Flags (bitfield, see below)
#if version == 1
 byte   Unknown
#endif
 byte[]  Stream-specific data

Flags:

  • bit 0: reliable packet (refers to network transmission method)
  • bit 1: keyframe

Note: The previous description of the data packet comes from working demuxer code, the description in official Real docs (somewhere on Helix site) is a bit different:

 word   Packet version
 word   Packet size
 word   Stream number
 dword  Timestamp
#if version == 0
 byte   Packet group
 byte   Flags
#endif
#if version == 1
 word   ASM rule
 byte   ASM flags
#endif
 byte[]  Stream-specific data

where packet group is "The packet group to which the packet belongs. If packet grouping is not used, set this field to 0 (zero)", asm rule is "The ASM rule assigned to this packet" and asm flags "Contains HX_ flags that dictate stream switching points".

Index header (INDX)

This chunk contains index entries. It comes after all the DATA chunks. An index chunk contains data for a single stream, A file can have more than one INDX chunk.

A INDX chunk has the following format

dword   Chunk type ('INDX')
dword   Chunk size
word    Chunk version (always 0, for every known file)
dword   Number of entries in this chunk
word    Stream number
dword   Offset of the next INDX chunk (form the start of the file)
byte[]  Index entries

Each index entry has this format

 word   Entry version (always 0, for every known file)
 dword  Timestamp (in ms)
 dword  Packet offset in file (form the start of the file)
 dword  Packet number


Codecs

Codecs in RealMedia are identified by the following four character codes:

Audio
Video
  • CLV1 - ClearVideo (from helix spec)
  • RV10 - H.263
  • RV13 - H.263
  • RV20 - H.263+
  • RV30 - H.264 precursor
  • RV40 - H.264 precursor
  • RV60 - HEVC derivative
  • RVTR - H.263+ (RV20)
  • RVT2 - RV30 ? (from helix spec hxmtypes.h)