Skip to content

Instantly share code, notes, and snippets.

@katpadi
Created June 29, 2015 09:33
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 katpadi/34d5e06b311aa3bb4df2 to your computer and use it in GitHub Desktop.
Save katpadi/34d5e06b311aa3bb4df2 to your computer and use it in GitHub Desktop.
timelapse_converter
#!/bin/sh
# Collect the jpg's
ls *.jpg stills.txt
# Create the video (mencoder)
mencoder -nosound -ovc lavc -lavcopts vcodec=mpeg4:aspect=16/9:vibrate=8000000 -vf scale=1920:1080 -o timelapse.avi -mf type=jpeg:fps=24 mf://@stills.txt
# TODO: Upload to YouTube?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment