How to create time-lapse movies from JPEG stills: Difference between revisions

From Wurst-Wasser.net
Jump to navigation Jump to search
(Created page with "=== The Mission === Trying to combine many <tt>.jpg</tt>-files into one movie, using my Mac with Mac OS X 10.8 Snow Leopard. === The Solution(s) === Category:Mac")
 
Line 3: Line 3:


=== The Solution(s) ===
=== The Solution(s) ===
==== Using <tt>ffmpeg</tt> ====
* Download and install <tt>ffmpeg</tt> either via [[homebrew]], compiling or just downloading binary from: http://ffmpegmac.net
* This…<br><tt>~/bin/ffmpeg -t 20 -f image2 -r 1 -loop 1 -i "%02d.JPG" -r 30 "out.mov"</tt><br>…will create a movie with 1fps, TBD


==== Using <tt>mencoder</tt> ====
*tbd*


----
* Links
** http://ffmpegmac.net
** https://lukecyca.com/2013/stop-motion-with-ffmpeg.html
** http://www.mplayerhq.hu/DOCS/HTML/en/menc-feat-enc-images.html


[[Category:Mac]]
[[Category:Mac OS X]]

Revision as of 22:50, 30 March 2014

The Mission

Trying to combine many .jpg-files into one movie, using my Mac with Mac OS X 10.8 Snow Leopard.

The Solution(s)

Using ffmpeg

  • Download and install ffmpeg either via homebrew, compiling or just downloading binary from: http://ffmpegmac.net
  • This…
    ~/bin/ffmpeg -t 20 -f image2 -r 1 -loop 1 -i "%02d.JPG" -r 30 "out.mov"
    …will create a movie with 1fps, TBD

Using mencoder

  • tbd*