Matroska
From Just Solve the File Format Problem
(Difference between revisions)
m |
(→Specifications) |
||
(6 intermediate revisions by 3 users not shown) | |||
Line 12: | Line 12: | ||
* [[Matroska subtitles]] (.mks) | * [[Matroska subtitles]] (.mks) | ||
* [[MK3D]] (stereoscopic video) | * [[MK3D]] (stereoscopic video) | ||
+ | |||
+ | == Identification == | ||
+ | A Matroska file begins with {{magic|0x1a 0x45 0xdf 0xa3}}, as do all [[EBML]] files. | ||
+ | |||
+ | It contains an EMBL "DocType" element whose value is the string "matroska". This means that the byte sequence {{magic|0x42 0x82 0x88 'm 'a 't' 'r' 'o' 's' 'k' 'a'}} will appear in the file, normally near the beginning. | ||
+ | |||
+ | == Software == | ||
+ | * [[VLC]] | ||
+ | * [[FFmpeg]] | ||
+ | * [[Konvertor]] | ||
== Specifications == | == Specifications == | ||
* [http://www.matroska.org/technical/specs/index.html Matroska Specifications] | * [http://www.matroska.org/technical/specs/index.html Matroska Specifications] | ||
+ | * RFC 9559 | ||
+ | |||
+ | == Sample files == | ||
+ | * https://samples.ffmpeg.org/Matroska/ | ||
+ | * [https://gist.github.com/dericed/3c2377b21ffe2d075764 Links to over 99,000 Matroska files in Internet Archive] | ||
== Links == | == Links == |
Latest revision as of 14:55, 2 December 2024
Matroska (sometimes spelled Matroška) is an open standard multimedia container format. It is based on the EBML metaformat.Specific formats:
- MKV (Matroska video)
- Matroska Audio (.mka)
- Matroska subtitles (.mks)
- MK3D (stereoscopic video)
Contents |
[edit] Identification
A Matroska file begins with 0x1a 0x45 0xdf 0xa3
, as do all EBML files.
It contains an EMBL "DocType" element whose value is the string "matroska". This means that the byte sequence 0x42 0x82 0x88 'm 'a 't' 'r' 'o' 's' 'k' 'a'
will appear in the file, normally near the beginning.