diff --git a/pages/common/mkvmerge.md b/pages/common/mkvmerge.md new file mode 100644 index 000000000..ce6762662 --- /dev/null +++ b/pages/common/mkvmerge.md @@ -0,0 +1,16 @@ +# mkvmerge + +> Merge and extract multimedia streams. +> More information: . + +- Display information about a Matroska file: + +`mkvmerge --identify {{path/to/file.mkv}}` + +- Extract the audio from track 1 of a specific file: + +`mkvextract tracks {{path/to/file.mkv}} {{1}}:{{path/to/output.webm}}` + +- Extract the subtitle from track 3 of a specific file: + +`mkvextract tracks {{path/to/file.mkv}} {{3}}:{{path/to/subs.srt}}`