Convert Video Files To FLV Using FFMPEG Command
Convert Video Files To FLV Using FFMPEG Command
com
http://www.bala-krishna.com/convert-video-files-to-flv-using-ffmpeg-command/
ffmpeg -i video.avi -ar 22050 -ab 32 -f flv -s 320240 video.flv -i input file name -ar audio sampling rate in Hz -ab audio bit rate in kbit/s -f output format -s output dimension
Convert other video to FLV with metadata This require flvtool2 tool to be installed on your box.
ffmpeg -i video.avi -ar 22050 -ab 32 -f flv -s 320240 | flvtool2 -U stdin video.flv
Convert FLV vidoe to jpg image sequence This command used to extract frame image sequence.
ffmpeg -i video.flv -an -r 1 -y -s 320240 video%d.jpg -i Input file name -an disable audio -r fps -y overwrite file -s output dimension
Convert particular frame to jpg Return one particular jpeg image of the frame based on start and end time.
ffmpeg -i video.flv -an -ss 00:00:03 -t 00:00:01 -r 1 -y -s 320240 video%d.jpg -ss record start time -t record end time last for