GNU/Linux Desktop Survival Guide
by Graham Williams |
|||||
Video from Photos |
Use mencoder-686. Convert all images to the same size first. (What's the best size? Should I crop or rescale?)
$ for i in *.jpg; do convert -resize 800x600! $i $i; done $ mencoder \*.jpg -mf on:fps=0.25 -o output.avi -ovc lavc $ mplayer output.avi |
Then transcode to SVCD and burn to CD. So far I do the following. But this gives 1 frame per second. Can't seem to slow it down?
$ transcode -a 0 -i output.avi -f 1 -y mpeg2enc,mp2enc -o output $ mplayer output.m1v $ mplex -f 4 -V -o output.mpg output.m1v $ mplayer output.mpg $ vcdimager --type=svcd output.mpg $ cdrdao write videocd.cue |