5,710
edits
Changes
→TIMELAPSE
*alt
<code>
=== Bundler ===
http://phototour.cs.washington.edu/bundler/
=== easyBundler ===
http://openendedgroup.com/field/ReconstructionDistribution
=== Video Stabilization ===
<code>./videostab /Volumes/Cistern/Art/beuys/beuyscrop.mov</code>
== Video Tools ==
===Record silence with ffmpeg===
*<code>ffmpeg -ar 48000 -t 60 -f s16le -acodec pcm_s16le -i /dev/zero -ab 64K -f mp2 -acodec mp2 -y silence.mp2</code>
**
=== Non-finalcut capture path===
* FireWireSDK capture utility to m2t file
ffmpeg -r 1 -i %04d.jpg -vcodec mjpeg -qscale 1 -s 1440x1080 -an output_1080.avi
</code>
=== Convex Mirror Time Lapse==
<syntaxhighlight lang="bash">
ffmpeg -r 5 -i frame%04d.jpg -r 30 -s 1440x1080 drawing05.mp4
</syntaxhighlight>
=== Add audio to image to make movie ===
<code>
ffmpeg -i whitman_640x480.jpg -i America\ -\ 36\ sec\ wax\ cylinder.mp3 -acodec copy whitman.mov
</code>