Skip to content

Instantly share code, notes, and snippets.

@artkirienko
Forked from bmaeser/subtitle-extract.txt
Created November 28, 2017 10:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save artkirienko/4a8dd30d38204cb9393299af93400ad0 to your computer and use it in GitHub Desktop.
Save artkirienko/4a8dd30d38204cb9393299af93400ad0 to your computer and use it in GitHub Desktop.
extract subtitles from *.mkv-files on osx
lines with $ are commands
### install mkvtoolnix:
$ brew install mkvtoolnix
### list content of the mkv-file:
$ mkvmerge -i mymoviefile.mkv
### what will give you:
File 'mymoviefiel.mkv': container: Matroska
Track ID 1: video (V_MPEG4/ISO/AVC)
Track ID 2: audio (A_DTS)
Track ID 3: subtitles (S_TEXT/UTF8)
Track ID 4: subtitles (S_TEXT/UTF8)
Chapters: 22 entries
### so the subtitle-tracks are number 3 and 4.
### extract all subtitle-tracks into a seperate srt-file / lang
$ mkvextract tracks mymoviefile.mkv 3:sub3.srt 4:sub4.srt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment