How do I convert an iPhone 720p video into a similar quality Flash video using ffmpeg?

1

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?

Sajee

Posted 2011-09-05T14:35:36.977

Reputation: 3 899

Answers

1

You're very close. Use this instead:

ffmpeg -i movie.mov -q:v 4 movie.flv

Change the q:v parameter to higher values for lower quality and lower file size.

CarlF

Posted 2011-09-05T14:35:36.977

Reputation: 8 576

The sameq option does not ensure the video quality will be the same.

– slhck – 2012-09-24T21:18:54.627