Skip to content

Instantly share code, notes, and snippets.

@mtrl
Created June 6, 2014 12:57
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 mtrl/fbde91d219ae5e54482d to your computer and use it in GitHub Desktop.
Save mtrl/fbde91d219ae5e54482d to your computer and use it in GitHub Desktop.
Create garden timelapse
#Add EXIF datetime stamp to all images
for i in *;do convert $i -pointsize 72 -fill white -annotate +100+100 "date: %[exif:DateTimeOriginal]" $i;done
# Convert to video file
ffmpeg -framerate 6 -start_number 24 -i IMG_00%2d.jpg -s 1920x1080 -vb 10000k -vcodec mpeg4 6fps.mp4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment