Stitching Pictures Into a Time Lapse: Difference between revisions
Jump to navigation
Jump to search
(Created page with "ffmpeg does it https://ubuntuforums.org/showthread.php?t=2022316") |
No edit summary |
||
Line 1: | Line 1: | ||
=Reference= | |||
ffmpeg does it | ffmpeg does it | ||
https://ubuntuforums.org/showthread.php?t=2022316 | https://ubuntuforums.org/showthread.php?t=2022316 | ||
=Howto= | |||
Navigate to directory with pictures. | |||
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) |
Revision as of 02:47, 30 October 2016
Reference
ffmpeg does it
https://ubuntuforums.org/showthread.php?t=2022316
Howto
Navigate to directory with pictures.
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)