OpenCamera: Difference between revisions
No edit summary |
No edit summary |
||
Line 4: | Line 4: | ||
=General: Converting Time Lapse Pictures to Video= | =General: Converting Time Lapse Pictures to Video= | ||
<nowiki>ffmpeg -r 25 -pattern_type glob -i '*.jpg' -c:v mjpeg -q:v 2 filename.avi | In command line use the following command unless a variation is provided on this page for a specific use case: | ||
</nowiki> | |||
<nowiki>ffmpeg -r 25 -pattern_type glob -i '*.jpg' -c:v mjpeg -q:v 2 filename.avi</nowiki> | |||
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 during the picture taking time - 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.''' | ||
=D3D Certification Command= | =D3D Certification Command= | ||
Line 18: | Line 18: | ||
Use the following command: | Use the following command: | ||
<nowiki>ffmpeg -r 12 -pattern_type glob -i '*.jpg' -c:v mjpeg -q:v 2 filename.avi | <nowiki>ffmpeg -r 12 -pattern_type glob -i '*.jpg' -c:v mjpeg -q:v 2 filename.avi</nowiki> | ||
</nowiki> | |||
Revision as of 00:00, 5 December 2018
Basics
- An open source android camera app
- Can be found on the google play store here
General: Converting Time Lapse Pictures to Video
In command line use the following command unless a variation is provided on this page for a specific use case:
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.
D3D Certification Command
Please review the above section: "General: Converting Time Lapse Pictures to Video"
Use the following command:
ffmpeg -r 12 -pattern_type glob -i '*.jpg' -c:v mjpeg -q:v 2 filename.avi