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

From Wurst-Wasser.net
Jump to navigation Jump to search
Line 5: Line 5:
==== Using <tt>ffmpeg</tt> ====
==== Using <tt>ffmpeg</tt> ====
* Download and install <tt>ffmpeg</tt> either via [[homebrew]], compiling or just downloading binary from: http://ffmpegmac.net
* 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
* This…<br><tt>~/bin/ffmpeg -t 20 -f image2 -r 1 -loop 1 -i "%04d-%02d-%02d_%02d-%02d-%02d.jpg" -r 30 "out.mov"</tt><ref>In-Files should be named like this: <tt>2014-03-30_10-17-02.jpg</tt></ref><br>…will create a movie with 1fps, TBD


==== Using <tt>mencoder</tt> ====
==== Using <tt>mencoder</tt> ====

Revision as of 21:58, 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 "%04d-%02d-%02d_%02d-%02d-%02d.jpg" -r 30 "out.mov"[1]
    …will create a movie with 1fps, TBD

Using mencoder

  • tbd*

  1. In-Files should be named like this: 2014-03-30_10-17-02.jpg