So we got a Pool table today. Here is a time lapse video of the installation.
If you want to see the final product, you will have to stop by the house.
Lots of thanks the munz, for the explanation of how to stitch the JPGs into a nice time lapse.
http://www.munz.li/?p=48
The this video I used: http://www.youtube.com/watch?v=3U2W2aJO-bE
for i in $(ls -1 *.JPG)
do
convert -resize '640x480' $i temp/$i
done
mencoder -nosound mf://*.jpg \
-mf w=640:h=480:type=jpg:fps=12 -ovc lavc -lavcopts \
vcodec=mpeg4:vbitrate=2160000:mbd=2:keyint=132:v4mv:vqmin=3:lumi_mask=0.07:dark_mask=0.2:mpeg_quant:scplx_mask=0.1:tcplx_mask=0.1:naq \
-o time_lapse-test.avi
Convert -- Comes with ImageMagick
And you can get mencoder from: http://prdownloads.sourceforge.net/mplayerosx/ffmpegXbinaries20060307.zip
|