Skip to content

Instantly share code, notes, and snippets.

@petrasovaa
Created June 25, 2015 17:21
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 petrasovaa/7c45cb81922d661df352 to your computer and use it in GitHub Desktop.
Save petrasovaa/7c45cb81922d661df352 to your computer and use it in GitHub Desktop.
Images to video
# Images to video
avconv -r 13 -i compare_%03d.png -c:v mpeg4 -b:v 25000k compare.mp4
# Horizontally append images in loop
for I in `seq -f "%03g" 1 390`
do
convert +append a_$I.png b_$I.png ab_$I.png
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment