Skip to content

Instantly share code, notes, and snippets.

@gunderson
Created April 24, 2015 18:49
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 gunderson/2be68e94dc9d9ca522b1 to your computer and use it in GitHub Desktop.
Save gunderson/2be68e94dc9d9ca522b1 to your computer and use it in GitHub Desktop.
Record screenlapse
# create movie
ffmpeg -r 24 -i ~/Desktop/screencapture/%d.jpg -b 15000k ~/Desktop/screencapture/timelapse.mov
# init screen cap
i=1;while [ 1 ];do screencapture -t jpg -x ~/Desktop/screencapture/$i.jpg; let i++;sleep 4; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment