Skip to content

Instantly share code, notes, and snippets.

@abhiTronix
Created December 8, 2020 03:10
Show Gist options
  • Save abhiTronix/7ea9d4bd37fdb1d152128de2f663d158 to your computer and use it in GitHub Desktop.
Save abhiTronix/7ea9d4bd37fdb1d152128de2f663d158 to your computer and use it in GitHub Desktop.
FFmpeg: Concat two videos without audio
ffmpeg -i input.mp4 -i empty.mp4 \
-filter_complex "[0:v:0] [1:v:0] concat=n=2:v=1 [v]" \
-map "[v]" output.mp4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment