OpenCamera: Difference between revisions
Jump to navigation
Jump to search
(Created page with "https://play.google.com/store/apps/details?id=net.sourceforge.opencamera&hl=en_US") |
No edit summary |
||
Line 1: | Line 1: | ||
https://play.google.com/store/apps/details?id=net.sourceforge.opencamera&hl=en_US | 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: | |||
<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. |
Revision as of 14:54, 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.