What are the proper arguments to ffmpeg to covert an iPhone4 720p video into a similar quality Flash video?

I tried the following which resulted in a low quality Flash video:

ffmpeg -i movie.mov movie.flv

What are the right switches?

link|improve this question

62% accept rate
feedback

1 Answer

up vote 1 down vote accepted

You're very close. Use this instead:

ffmpeg -i movie.mov -sameq movie.flv

The -sameq option ensures that the same video quality will be used for the output as the source.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.