MIMETypesCodecs: Difference between revisions
(first version finalized) |
(removed some columns out of that unreadable table) |
||
Line 28: | Line 28: | ||
|- | |- | ||
! Codecs Parameter Name | ! Codecs Parameter Name | ||
! Codec Identifier (decimal | ! Codec Identifier | ||
(decimal, hex, octal) | |||
! Version Field (if available) | ! Version Field (if available) | ||
|- | |- | ||
| [http://lists.xiph.org/pipermail/ogg-dev/2008-February/000891.html dirac] | | [http://lists.xiph.org/pipermail/ogg-dev/2008-February/000891.html dirac] | ||
| char[0,5]: 'BBCD\0' | | char[0,5]: 'BBCD\0' | ||
hex: '0x42 0x42 0x43 0x44 00' | |||
oct: '0102 0102 0103 0104 0000' | |||
| ?? | | ?? | ||
|- | |- | ||
| [http://svn.annodex.net/liboggz/trunk/src/liboggz/oggz_auto.h celt] | | [http://svn.annodex.net/liboggz/trunk/src/liboggz/oggz_auto.h celt] | ||
| char[0,8]: 'CELT ' | | char[0,8]: 'CELT ' | ||
hex: '0x43 0x45 0x4c 0x54 0x20 0x20 0x20 0x20' | |||
oct: '0103 0105 0114 0124 0040 0040 0040 0040' | |||
| char[28,4]: version id | | char[28,4]: version id | ||
|- | |- | ||
| [http://svn.annodex.net/liboggz/trunk/src/liboggz/oggz_auto.h cmml] | | [http://svn.annodex.net/liboggz/trunk/src/liboggz/oggz_auto.h cmml] | ||
| char[0,8]: 'CMML\0\0\0\0' | | char[0,8]: 'CMML\0\0\0\0' | ||
hex: '0x43 0x4d 0x4d 0x4c 0x00 0x00 0x00 0x00' | |||
oct: '0103 0115 0115 0114 0000 0000 0000 0000' | |||
| char[8,2]: major version number, | | char[8,2]: major version number, | ||
char[10,2]: minor version number | char[10,2]: minor version number | ||
Line 54: | Line 53: | ||
| [http://flac.sourceforge.net/ogg_mapping.html flac] | | [http://flac.sourceforge.net/ogg_mapping.html flac] | ||
| char[0,5]: '\177FLAC' | | char[0,5]: '\177FLAC' | ||
hex: '0x7F 0x46 0x4C 0x41 0x43' | |||
oct: '0177 0106 0114 0101 0103' | |||
| char[5,1]: binary major version number, | | char[5,1]: binary major version number, | ||
char[6,1]: binary minor version number of mapping | char[6,1]: binary minor version number of mapping | ||
Line 61: | Line 60: | ||
| [http://wiki.xiph.org/index.php/OggMNG jng] | | [http://wiki.xiph.org/index.php/OggMNG jng] | ||
| char[0,8]: '\213JNG\r\n\032\n' | | char[0,8]: '\213JNG\r\n\032\n' | ||
hex: '0x8b 0x4a 0x4e 0x47 0x0D 0x0A 0x1A 0x0A' | |||
oct: '0213 0112 0116 0107 0015 0012 0032 0012' | |||
| ?? | | ?? | ||
|- | |- | ||
| [http://wiki.xiph.org/index.php/OggKate kate] | | [http://wiki.xiph.org/index.php/OggKate kate] | ||
| char[0,9]: '\x80kate\0\0\0\0' | | char[0,9]: '\x80kate\0\0\0\0' | ||
hex: '0x80 0x6b 0x61 0x74 0x65 0x00 0x00 0x00 0x00' | |||
oct: '0200 0153 0141 0164 0145 0000 0000 0000 0000' | |||
| char[9,1]: major version number, | | char[9,1]: major version number, | ||
char[10,1]: minor version number | char[10,1]: minor version number | ||
Line 74: | Line 73: | ||
| [http://lists.xiph.org/pipermail/vorbis-dev/2001-August/004501.html midi] | | [http://lists.xiph.org/pipermail/vorbis-dev/2001-August/004501.html midi] | ||
| char[0,8]: 'OggMIDI\0' | | char[0,8]: 'OggMIDI\0' | ||
hex: '0x4f 0x67 0x67 0x4d 0x49 0x44 0x49 0x00' | |||
oct: '0117 0147 0147 0115 0111 0104 0111 0000' | |||
| char[8,1]: version field | | char[8,1]: version field | ||
|- | |- | ||
| [http://wiki.xiph.org/index.php/OggMNG mng] | | [http://wiki.xiph.org/index.php/OggMNG mng] | ||
| char[0,8]: '\212MNG\r\n\032\n' | | char[0,8]: '\212MNG\r\n\032\n' | ||
hex: '0x8a 0x4d 0x4e 0x47 0x0D 0x0A 0x1A 0x0A' | |||
oct: '0212 0115 0116 0107 0015 0012 0032 0012' | |||
| ?? | | ?? | ||
|- | |- | ||
| [http://wiki.xiph.org/index.php/OggPCM pcm] | | [http://wiki.xiph.org/index.php/OggPCM pcm] | ||
| char[0,8]: 'PCM ' | | char[0,8]: 'PCM ' | ||
hex: '0x53 0x70 0x65 0x65 0x78 0x20 0x20 0x20' | |||
oct: '0123 0160 0145 0145 0170 0040 0040 0040' | |||
| char[8,2]: version major field, | | char[8,2]: version major field, | ||
char[10,2]: version minor field | char[10,2]: version minor field | ||
Line 93: | Line 92: | ||
| [http://wiki.xiph.org/index.php/OggMNG png] | | [http://wiki.xiph.org/index.php/OggMNG png] | ||
| char[0,8]: '\211PNG\r\n\032\n' | | char[0,8]: '\211PNG\r\n\032\n' | ||
hex: '0x89 0x50 0x4e 0x47 0x0D 0x0A 0x1A 0x0A' | |||
oct: '0211 0120 0116 0107 0015 0012 0032 0012' | |||
| ?? | | ?? | ||
|- | |- | ||
| [http://svn.annodex.net/liboggz/trunk/src/liboggz/oggz_auto.h speex] | | [http://svn.annodex.net/liboggz/trunk/src/liboggz/oggz_auto.h speex] | ||
| char[0,8]: 'Speex ' | | char[0,8]: 'Speex ' | ||
hex: '0x53 0x70 0x65 0x65 0x78 0x20 0x20 0x20' | |||
oct: '0123 0160 0145 0145 0170 0040 0040 0040' | |||
| char[28,4]: version id | | char[28,4]: version id | ||
|- | |- | ||
| [http://svn.annodex.net/liboggz/trunk/src/liboggz/oggz_auto.h theora] | | [http://svn.annodex.net/liboggz/trunk/src/liboggz/oggz_auto.h theora] | ||
| char[0,7]: '\x80theora' | | char[0,7]: '\x80theora' | ||
hex: '0x80 0x74 0x68 0x65 0x6f 0x72 0x61' | |||
oct: '0180 0164 0150 0145 0157 0162 0141' | |||
| char[7,1]: major version number, | | char[7,1]: major version number, | ||
char[8,1]: minor version number, | char[8,1]: minor version number, | ||
Line 113: | Line 112: | ||
| [http://svn.annodex.net/liboggz/trunk/src/liboggz/oggz_auto.h vorbis] | | [http://svn.annodex.net/liboggz/trunk/src/liboggz/oggz_auto.h vorbis] | ||
| char[0,7]: '\x01vorbis' | | char[0,7]: '\x01vorbis' | ||
hex: '0x01 0x76 0x6f 0x72 0x62 0x69 0x73' | |||
oct: '0001 0166 0157 0162 0142 0151 0163' | |||
| char[7,4]: version field | | char[7,4]: version field | ||
|- | |- | ||
| yuv4mpeg | | yuv4mpeg | ||
| char[9]: 'YUV4MPEG2' | | char[9]: 'YUV4MPEG2' | ||
hex: '0x59 0x55 0x56 0x34 0x4d 0x50 0x45 0x47 0x32' | |||
oct: '0131 0125 0126 0064 0115 0120 0105 0107 0062' | |||
| ?? | | ?? | ||
|} | |} |
Revision as of 22:07, 5 June 2008
Specification of MIME Types and of codecs parameters
MIME Types
The following MIME types are now officially registered with IANA (well, almost, see [[1]]):
- application/ogg - for complex, multitrack, multiplexed files encapsulated in Ogg
- requires a Skeleton logical bitstream
- video/ogg - for video encapsulated in Ogg
- recommends a Skeleton logical bitstrem
- audio/ogg - for audio encapsulated in Ogg
- recommends a Skeleton logical bitstrem
Other MIME types are still in the process.
Codecs Parameter
Typically, MIME types of media encapsulation formats use the optional "codecs" parameter to specify which codes are being used in a particular file.
Codecs encapsulated in Ogg require a text identifier at the beginning of the first header page to identify the encapsulated codecs. The following table contains the identifiers for existing Xiph codecs and the codecs parameter names used for */ogg MIME types (in alphabetical order):
Codecs Parameter Name | Codec Identifier
(decimal, hex, octal) |
Version Field (if available) |
---|---|---|
dirac | char[0,5]: 'BBCD\0'
hex: '0x42 0x42 0x43 0x44 00' oct: '0102 0102 0103 0104 0000' |
?? |
celt | char[0,8]: 'CELT '
hex: '0x43 0x45 0x4c 0x54 0x20 0x20 0x20 0x20' oct: '0103 0105 0114 0124 0040 0040 0040 0040' |
char[28,4]: version id |
cmml | char[0,8]: 'CMML\0\0\0\0'
hex: '0x43 0x4d 0x4d 0x4c 0x00 0x00 0x00 0x00' oct: '0103 0115 0115 0114 0000 0000 0000 0000' |
char[8,2]: major version number,
char[10,2]: minor version number |
flac | char[0,5]: '\177FLAC'
hex: '0x7F 0x46 0x4C 0x41 0x43' oct: '0177 0106 0114 0101 0103' |
char[5,1]: binary major version number,
char[6,1]: binary minor version number of mapping |
jng | char[0,8]: '\213JNG\r\n\032\n'
hex: '0x8b 0x4a 0x4e 0x47 0x0D 0x0A 0x1A 0x0A' oct: '0213 0112 0116 0107 0015 0012 0032 0012' |
?? |
kate | char[0,9]: '\x80kate\0\0\0\0'
hex: '0x80 0x6b 0x61 0x74 0x65 0x00 0x00 0x00 0x00' oct: '0200 0153 0141 0164 0145 0000 0000 0000 0000' |
char[9,1]: major version number,
char[10,1]: minor version number |
midi | char[0,8]: 'OggMIDI\0'
hex: '0x4f 0x67 0x67 0x4d 0x49 0x44 0x49 0x00' oct: '0117 0147 0147 0115 0111 0104 0111 0000' |
char[8,1]: version field |
mng | char[0,8]: '\212MNG\r\n\032\n'
hex: '0x8a 0x4d 0x4e 0x47 0x0D 0x0A 0x1A 0x0A' oct: '0212 0115 0116 0107 0015 0012 0032 0012' |
?? |
pcm | char[0,8]: 'PCM '
hex: '0x53 0x70 0x65 0x65 0x78 0x20 0x20 0x20' oct: '0123 0160 0145 0145 0170 0040 0040 0040' |
char[8,2]: version major field,
char[10,2]: version minor field |
png | char[0,8]: '\211PNG\r\n\032\n'
hex: '0x89 0x50 0x4e 0x47 0x0D 0x0A 0x1A 0x0A' oct: '0211 0120 0116 0107 0015 0012 0032 0012' |
?? |
speex | char[0,8]: 'Speex '
hex: '0x53 0x70 0x65 0x65 0x78 0x20 0x20 0x20' oct: '0123 0160 0145 0145 0170 0040 0040 0040' |
char[28,4]: version id |
theora | char[0,7]: '\x80theora'
hex: '0x80 0x74 0x68 0x65 0x6f 0x72 0x61' oct: '0180 0164 0150 0145 0157 0162 0141' |
char[7,1]: major version number,
char[8,1]: minor version number, char[9,1]: version revision number |
vorbis | char[0,7]: '\x01vorbis'
hex: '0x01 0x76 0x6f 0x72 0x62 0x69 0x73' oct: '0001 0166 0157 0162 0142 0151 0163' |
char[7,4]: version field |
yuv4mpeg | char[9]: 'YUV4MPEG2'
hex: '0x59 0x55 0x56 0x34 0x4d 0x50 0x45 0x47 0x32' oct: '0131 0125 0126 0064 0115 0120 0105 0107 0062' |
?? |