Created
April 13, 2017 10:34
-
-
Save ogavrisevs/45ac32fc39c2b553ffbe9cec60aed596 to your computer and use it in GitHub Desktop.
Create timelaps from images
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
x=1; for i in *jpg; do counter=$(printf %04d $x); ln -s "~/timelapse/$i" /tmp/timelaps/img"$counter".jpg; x=$(($x+1)); done | |
/tmp/timelaps$ ffmpeg -f image2 -i img%04d.jpg a2.mpg |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment