Difference between revisions of "Matroska"

From VideoLAN Wiki
Jump to navigation Jump to search
m (→‎Source code: Fix git link)
(→‎Accepted codecs: Unsupported codecs include TTA: untrue: https://git.videolan.org/?p=vlc.git;a=blob;f=modules/demux/tta.c)
Line 23: Line 23:
  
 
=== Accepted codecs ===
 
=== Accepted codecs ===
Below are the codecs supported by VLC. Unsupported codecs include [[TTA]] and [[Wavpack]].
+
Below are the codecs supported by VLC. Unsupported codecs include [[Wavpack]].
  
 
==== Video codecs ====
 
==== Video codecs ====
Line 38: Line 38:
 
* [[vorb]]: Vorbis
 
* [[vorb]]: Vorbis
 
* [[twos]], [[araw]]: uncompressed audio
 
* [[twos]], [[araw]]: uncompressed audio
 +
* [[tta]]: True Audio
 
==== Subtitle codecs ====
 
==== Subtitle codecs ====
 
* [[subt]]
 
* [[subt]]

Revision as of 08:42, 1 February 2019

English help

mkv
VLC can decode this container.
The module name to use at the command line is mkv, but you can also use mka.

Matroska is a container format for storing or streaming video and audio files. The Matroska format has many features, such as a DVD-style menu system.

File-extensions: .mkv .mka .mks

Module options

  • --mkv-use-ordered-chapters (boolean)
    Ordered chapters: Play ordered chapters as specified in the segment. Default true.
  • --mkv-use-chapter-codec (boolean)
    Use chapter codecs found in the segment. Default true.
  • --mkv-preload-local-dir (boolean)
    Preload matroska files from the same family in the same directory (not good for broken files). Default true.
  • --mkv-seek-percent (boolean)
    Seek based on percent not time. Default false.
  • --mkv-use-dummy (boolean)
    Read and discard unknown EBML elements (not good for broken files). Default false.

Compatibility

VideoLAN can only read matroska files. Also, some of the video codecs that can be used inside this type of file are not supported by VLC. Most notably, this includes the RealVideo 9 and 10 formats.

Accepted codecs

Below are the codecs supported by VLC. Unsupported codecs include Wavpack.

Video codecs

Audio codecs

Subtitle codecs

Aide en Français

Site officiel: http://www.matroska.org/index.html.fr

Un article framasoft: http://www.framasoft.net/article2113.html

Source code