Last active
October 13, 2015 00:18
-
-
Save bthallplz/4109850 to your computer and use it in GitHub Desktop.
Assembles Timelapse Photos into Video
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
| #!/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