Video Conversionn with ffmpeg

While searching for how to convert a2v video into a mov, I found everything that one wanted to know about ffmpeg but was afraid to ask explained in a simple way in here: this forum answer.

In short, just do

ffmpeg -format
to list all formats. Then use this simple command to convert between video formats:
ffmpeg -i {input_video_file} -f {format} {ouput_video_file}
In my case, my command was:
ffmpeg -i Passadeiras\ Ativas.m2v -an -f mov teste.mov
since I was converting to a mov file and stripping the sound.

./M6