OpenCamera: Difference between revisions
Jump to navigation
Jump to search
Line 9: | Line 9: | ||
This converts individual pictures into a video. In Terminal, navigate to the directory with your pictures - and run the ffmpeg command there. The .avi file will be generated in your working pictures directory. | This converts individual pictures into a video. In Terminal, navigate to the directory with your pictures - and run the ffmpeg command there. The .avi file will be generated in your working pictures directory. | ||
'''Note: do not change the zoom setting on your camera during the time lapse, or your video will not be created properly. Ffmpeg works on sequences with the same zoom settings. If the zoom setting is changed - you must run ffmpeg on batches - where every picture in the batch has the same zoom settings. | '''Note: do not change the zoom setting on your camera during the time lapse, or your video will not be created properly. Ffmpeg works on sequences with the same zoom settings. If the zoom setting is changed during the picture taking time - you must run ffmpeg on batches - where every picture in the batch has the same zoom settings. |
Revision as of 14:56, 19 November 2018
https://play.google.com/store/apps/details?id=net.sourceforge.opencamera&hl=en_US
Converting Time Lapse Pictures to Video
- In command line, type in:
ffmpeg -r 25 -pattern_type glob -i '*.jpg' -c:v mjpeg -q:v 2 filename.avi
This converts individual pictures into a video. In Terminal, navigate to the directory with your pictures - and run the ffmpeg command there. The .avi file will be generated in your working pictures directory.
Note: do not change the zoom setting on your camera during the time lapse, or your video will not be created properly. Ffmpeg works on sequences with the same zoom settings. If the zoom setting is changed during the picture taking time - you must run ffmpeg on batches - where every picture in the batch has the same zoom settings.