Skip to content

Instantly share code, notes, and snippets.

@vjk2005
Forked from Erkaman/three_vids.sh
Created July 28, 2018 21:00
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 vjk2005/14004adbfc836a82e0a697b3aa80d4e2 to your computer and use it in GitHub Desktop.
Save vjk2005/14004adbfc836a82e0a697b3aa80d4e2 to your computer and use it in GitHub Desktop.
example script, that uses ffmpeg to make a video that shows three videos side by side
# Example video made by this script: https://twitter.com/erkaman2/status/990873258416361472
ffmpeg \
-y \
-i vid1.mp4 \
-i vid2.mp4 \
-i vid3.mp4 \
-filter_complex '[0:v]pad=iw*3:ih[int];[int][1:v]overlay=W*0.33:0[temp];[temp][2:v]overlay=W*0.66:0[vid]' \
-map [vid] \
-c:v libx264 \
-b:v 50M \
output.mp4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment