Skip to content

Instantly share code, notes, and snippets.

@bthallplz
Last active October 13, 2015 00:18
Show Gist options
  • Select an option

  • Save bthallplz/4109850 to your computer and use it in GitHub Desktop.

Select an option

Save bthallplz/4109850 to your computer and use it in GitHub Desktop.
Assembles Timelapse Photos into Video
#!/bin/bash
ls GOPR*.JPG -1tr > files.txt
mencoder -nosound -ovc lavc -lavcopts vcodec=mpeg4 -o output.avi -mf type=jpeg:fps=10 mf://@files.txt
ffmpeg -i output.avi -y -s hd720 -qscale 0 output-final.mp4
rm files.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment