Skip to content

Instantly share code, notes, and snippets.

@gosuri
Created April 13, 2013 06:05
Show Gist options
  • Select an option

  • Save gosuri/5377221 to your computer and use it in GitHub Desktop.

Select an option

Save gosuri/5377221 to your computer and use it in GitHub Desktop.
# Converting Still Images to Video
# ================================
# depends on ImageMagick and ffmpeg
#
mkdir temp
cp *.jpg temp/.
mogrify -resize 800x800 temp/*.jpg
convert temp/*.jpg -delay 10 -morph 10 temp/%05d.jpg
ffmpeg -r 25 -qscale 2 -i temp/%05d.jpg output.mp4
# rm -R temp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment