Skip to content

Instantly share code, notes, and snippets.

@wvega
Created September 28, 2011 21:03
Show Gist options
  • Save wvega/1249249 to your computer and use it in GitHub Desktop.
Save wvega/1249249 to your computer and use it in GitHub Desktop.
Convert .MOV to .AVI using MEncoder or ffmpeg
# convert MOV to AVI using MEncoder
mencoder ${fl} -o ${fl/mov/avi} -oac mp3lame -ovc lavc
# convert MOV to AVI using ffmpeg
ffmpeg -i ${fl} -sameq -vcodec msmpeg4v2 -acodec pcm_u8 ${fl/mov/avi}
# create audio track
mplayer -ao pcm -vo null -vc dummy -dumpaudio -dumpfile ${fl/mov/mp3} ${fl/mov/avi}
@grewetab
Copy link

Maybe the following information is nothing to do with MEncoder or ffmpeg, but it does introduce a useful method to convert MOV to AVI: http://www.faasoft.com/articles/mov-to-avi.html

I think it may help people who just want to convert MOV to AVI, MP4, FLV, etc with easy steps and fast conversion speed.

@Bertibruyn
Copy link

Actually, there are many online apps can do the video conversion for you, such as zamzar, Acethinker Video Converter, mediaconverter, etc. They are totally free, and you don't have to download or install anything.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment