ffmpeg -i file-name.mov -g 60 -vcodec msmpeg4v2 -acodec pcm_u8 -f avi file-name.avi
My 2cent tips & tricks on computer technology & Application Virtualization ...
Showing posts with label ffmpeg. Show all posts
Showing posts with label ffmpeg. Show all posts
Thursday, February 25, 2010
Tips: Video: convert mov to avi file using ffmpeg
Use the following command to convert .mov file to .avi file.
Monday, December 1, 2008
Tips: Convert flv to mpg or avi
Following converts
and following converts video.flv into video.AVI with MP3 Audio:
video.flv into video.mpg file:CODE
ffmpeg -i video.flv -ab 56 -ar 22050 -b 500 -s 320x240 video.mpg
and following converts video.flv into video.AVI with MP3 Audio:
CODE
ffmpeg -i I_test.flv -ab 56 -ar 22050 -b 500 -s 320x240 -vcodec xvid -acodec mp3 video.avi
Subscribe to:
Posts (Atom)