Aug 23, 2009, 05:13 PM
I created an Automator script that converted my movie from format x[\I] to FLV then created a poster frame. Basically, it used ffmpeg, which is a free command line utility. You cannot find the binary to download, but if you download ffmpegx and look inside the package you can extract the pre-compiled ffmpeg binary which works without the shareware GUI wrapper (e.g. ffmpegx). I am in my BootCamp so I don't have access to my Automator script (to extract the command line to generate the poster frame) but it's easy to Google that part/.
Here's the arguments I use to generate a poster frame using ffmpeg in the command line (but called in Automator):
Code:
for f in "$@"
do
/usr/local/bin/ffmpeg -i "$f" -an -ss 00:00:03 -t 00:00:01 -r 1 -y -s 320x240 /Users/craig/Desktop/video%d.jpg
done