Skip to content

Instantly share code, notes, and snippets.

@lucasmezencio
Created August 26, 2012 13:28
Show Gist options
  • Save lucasmezencio/3479301 to your computer and use it in GitHub Desktop.
Save lucasmezencio/3479301 to your computer and use it in GitHub Desktop.
How to make a time-lapse video with webcam in Ubuntu/Debian
# '-t' is the number of frames we want to capture. '-r' is frames per second. So this should grab one frame every second.
streamer -o 0000.jpeg -s 300x200 -j 100 -t 2000 -r 1
@jeanpimentel
Copy link

use this to generate an animated gif file

convert -loop 0 -quality 100% *.jpeg result.gif

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment