FFMpeg to Encode Flash Videos
Submitted by johnk on Thu, 02/21/2008 - 11:13.Here is a command line to encode to low-resolution Flash video for publishing on a web server (that isn't a streaming server).
cat FASTING/VIDEO_TS/VTS_01_*.VOB | /usr/local/bin/ffmpeg -i - -f flv -s 320x240 -acodec libmp3lame -ar 22050 -ab 64k fasting.flv
What this does is dump all the .VOB files into ffmpeg, which is told to take input from standard input.

