Created
January 19, 2015 17:12
-
-
Save jordanwesthoff/36768d200fb231996c06 to your computer and use it in GitHub Desktop.
Time Lapse Maker Commands
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 | |
| # Run this in the directory with all of the files to be made | |
| ls -1v | grep png > files2.txt | |
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 | |
| # Run this in the same directory to pull from the grepped list file but make sure to point to a different directory | |
| mencoder -nosound -ovc lavc -lavcopts vcodec=mpeg4:vbitrate=21600000 -o /mnt/dpool/icelab-timelapse/timelapse_temp/daytime1.mp4 -mf type=png:fps=24 mf://@files1.txt -vf scale=1920:1080 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment