Skip to content

Instantly share code, notes, and snippets.

@srichakradhar
Created August 8, 2018 18:06
Show Gist options
  • Save srichakradhar/660763ff278c82f227d105996e53049b to your computer and use it in GitHub Desktop.
Save srichakradhar/660763ff278c82f227d105996e53049b to your computer and use it in GitHub Desktop.
concatenate two videos (no audio)
ffmpeg -i video1.avi -i video2.gif -filter_complex "[0:v:0] [1:v:0] concat=n=2:v=1 [v]" -map "[v]" output.mp4
# source: https://www.bugcodemaster.com/article/concatenate-videos-using-ffmpeg
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment