WebM
From Just Solve the File Format Problem
(Difference between revisions)
Dan Tobias (Talk | contribs) (Created page with "{{FormatInfo |formattype=electronic |subcat=Video |extenseions={{ext|webm}} |mimetypes={{mimetype|video/webm}}, {{mimetype|audio/webm}} }} '''WebM''' is a video and audio cont...") |
Dexvertbot (Talk | contribs) m (Change telparia.com samples link to template) |
||
(7 intermediate revisions by 5 users not shown) | |||
Line 2: | Line 2: | ||
|formattype=electronic | |formattype=electronic | ||
|subcat=Video | |subcat=Video | ||
− | | | + | |extensions={{ext|webm}} |
|mimetypes={{mimetype|video/webm}}, {{mimetype|audio/webm}} | |mimetypes={{mimetype|video/webm}}, {{mimetype|audio/webm}} | ||
+ | |pronom={{PRONOM|fmt/573}} | ||
+ | |wikidata={{wikidata|Q309440}} | ||
+ | |locfdd={{LoCFDD|fdd000518}} | ||
}} | }} | ||
− | '''WebM''' is a video and audio container format released by Google, used with content encoded under the [[VP8]] or [[VP9]] codecs for video, and [[Vorbis]] and [[Opus]] for audio. | + | '''WebM''' is a video and audio container format released by Google, used with content encoded under the [[VP8]] or [[VP9]] codecs for video, and [[Vorbis]] and [[Opus]] for audio. It is a variant of [[Matroska]], based on [[EBML]]. |
+ | |||
+ | == Identification == | ||
+ | A WebM file begins with {{magic|0x1a 0x45 0xdf 0xa3}}, as do all [[EBML]] files. | ||
+ | |||
+ | It contains an EMBL "DocType" element whose value is the string "webm". This means that the byte sequence {{magic|0x42 0x82 0x84 'w' 'e' 'b' 'm'}} will appear in the file, normally near the beginning. | ||
== Sample files == | == Sample files == | ||
− | * [ | + | * [https://webm.html5.org/test.webm Test video] |
+ | * {{DexvertSamples|video/webmVideo}} | ||
== Links == | == Links == | ||
* [[Wikipedia:WebM|Wikipedia article]] | * [[Wikipedia:WebM|Wikipedia article]] | ||
− | * [ | + | * [https://www.webmproject.org/ The WebM Project] |
− | * [ | + | * [https://www.webmproject.org/docs/container/ Container Guidelines] |
+ | |||
+ | == Software == | ||
+ | * [[FFmpeg]] | ||
+ | * [[Konvertor]] | ||
[[Category:Google]] | [[Category:Google]] | ||
[[Category:Audio and Music]] | [[Category:Audio and Music]] |
Latest revision as of 05:15, 28 December 2023
WebM is a video and audio container format released by Google, used with content encoded under the VP8 or VP9 codecs for video, and Vorbis and Opus for audio. It is a variant of Matroska, based on EBML.
Contents |
[edit] Identification
A WebM file begins with 0x1a 0x45 0xdf 0xa3
, as do all EBML files.
It contains an EMBL "DocType" element whose value is the string "webm". This means that the byte sequence 0x42 0x82 0x84 'w' 'e' 'b' 'm'
will appear in the file, normally near the beginning.