HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

mkvpropedit — Modify properties of existing Matroska files without a complete remux. More information: <https://mk

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commandfilesmodifymatroskacliexistingmkvpropeditproperties
linux

Problem

How to use the mkvpropedit command: Modify properties of existing Matroska files without a complete remux. More information: <https://mkvtoolnix.download/doc/mkvpropedit.html>.

Solution

mkvpropedit — Modify properties of existing Matroska files without a complete remux. More information: <https://mkvtoolnix.download/doc/mkvpropedit.html>.

Delete title:
mkvpropedit {{[-d|--delete]}} title {{path/to/file.mkv}}


Mark subtitle track 3 as SDH - Subtitles for deaf and hearing impared:
mkvpropedit {{path/to/file.mkv}} {{[-e|--edit]}} track:s3 {{[-s|--set]}} flag-hearing-impaired=1


Mark audio track 2 as Default:
mkvpropedit {{path/to/file.mkv}} {{[-e|--edit]}} track:a2 {{[-s|--set]}} flag-default=1


Delete the name of video track 1:
mkvpropedit {{path/to/file.mkv}} {{[-e|--edit]}} track:v1 {{[-d|--delete]}} name

Code Snippets

Delete title

mkvpropedit {{[-d|--delete]}} title {{path/to/file.mkv}}

Mark subtitle track 3 as SDH - Subtitles for deaf and hearing impared

mkvpropedit {{path/to/file.mkv}} {{[-e|--edit]}} track:s3 {{[-s|--set]}} flag-hearing-impaired=1

Mark audio track 2 as Default

mkvpropedit {{path/to/file.mkv}} {{[-e|--edit]}} track:a2 {{[-s|--set]}} flag-default=1

Delete the name of video track 1

mkvpropedit {{path/to/file.mkv}} {{[-e|--edit]}} track:v1 {{[-d|--delete]}} name

Context

tldr-pages: linux/mkvpropedit

Revisions (0)

No revisions yet.