Skip to content

Instantly share code, notes, and snippets.

@jamiew
Created May 8, 2011 07:01
Show Gist options
  • Save jamiew/961183 to your computer and use it in GitHub Desktop.
Save jamiew/961183 to your computer and use it in GitHub Desktop.
Poor recreation of Pummelvision-style video animation
#!/bin/sh
# video, adjust for input filenames & output format+filename
ffmpeg -r 6 -b 1800 -i "image%04d.jpg" -f webm test1800.webm
# animated GIF
convert -verbose -delay 20 -loop 0 -density 200 *.jpg output.gif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment