Created
August 26, 2012 13:28
-
-
Save lucasmezencio/3479301 to your computer and use it in GitHub Desktop.
How to make a time-lapse video with webcam in Ubuntu/Debian
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# '-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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
use this to generate an animated gif file
convert -loop 0 -quality 100% *.jpeg result.gif