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
  • 6,869

1 Answers1

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.

slhck
  • 235,242
CarlF
  • 8,872