Stitching Pictures Into a Time Lapse: Difference between revisions

From Open Source Ecology
Jump to navigation Jump to search
No edit summary
Line 6: Line 6:


=Howto=
=Howto=
Navigate to directory with pictures.
Use Terminal. Navigate to directory with pictures. Then type:


ffmpeg -r 25 -pattern_type glob -i '*.JPG' -c:v mjpeg -q:v 2 foundation1.avi
ffmpeg -r 25 -pattern_type glob -i '*.JPG' -c:v mjpeg -q:v 2 foundation1.avi


Note: # -q:v can get a value between 2-31. 2 is best quality and bigger size, 31 is worst quality and least size)
Note: # -q:v can get a value between 2-31. 2 is best quality and bigger size, 31 is worst quality and least size)

Revision as of 02:50, 30 October 2016

Reference

ffmpeg does it

https://ubuntuforums.org/showthread.php?t=2022316

Howto

Use Terminal. Navigate to directory with pictures. Then type:

ffmpeg -r 25 -pattern_type glob -i '*.JPG' -c:v mjpeg -q:v 2 foundation1.avi

Note: # -q:v can get a value between 2-31. 2 is best quality and bigger size, 31 is worst quality and least size)