Skip to content

Instantly share code, notes, and snippets.

@ybagheri
Last active March 28, 2021 09:51
Show Gist options
  • Save ybagheri/d273571cb42050723808f82b75c1152b to your computer and use it in GitHub Desktop.
Save ybagheri/d273571cb42050723808f82b75c1152b to your computer and use it in GitHub Desktop.
ffmpeg convert FLV to MP4 solve error Could not write header for output file - add text subtitles avi to mkv
## ffmpeg convert FLV to MP4
ffmpeg -i 'input.flv' -vf "scale=2*trunc(iw/2):-2" 'output.mp4'
## add text subtitles avi to mkv
ffmpeg -i 'input.avi' -i subtitles.srt -scodec copy combined.mkv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment