Skip to content

Instantly share code, notes, and snippets.

@dbazile
Created December 1, 2021 01:20
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 dbazile/c1bca88e57b179664c4fd679586fe9d1 to your computer and use it in GitHub Desktop.
Save dbazile/c1bca88e57b179664c4fd679586fe9d1 to your computer and use it in GitHub Desktop.
ffmpeg burn mkv subtitles
ffmpeg \
-hide_banner \
-i "$infile" \
-filter_complex "[0:v] [0:s] overlay, scale=-1:720" \
-preset fast \
-vcodec libx264 \
-acodec aac \
-sn \
-y \
-map_metadata -1 \
"${@:2}" \
"$outfile"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment