Skip to content

Instantly share code, notes, and snippets.

@Vicfred
Forked from kurlov/mkv embed soft subtitles
Created March 2, 2020 07:04
Show Gist options
  • Save Vicfred/0a56eba265e2ea1fc8854f3fd6bdc9ce to your computer and use it in GitHub Desktop.
Save Vicfred/0a56eba265e2ea1fc8854f3fd6bdc9ce to your computer and use it in GitHub Desktop.
ffmpeg command to add .srt based subtitles to an .mkv file
ffmpeg -i in.mkv -f srt -i in.srt -map 0:0 -map 0:1 -map 1:0 -c:v copy -c:a copy -c:s srt out.mkv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment