0

What do I have to add to this command:

cat *.jpg | ffmpeg -f image2pipe -r 10 -vcodec mjpeg -i - out7.webm

to get the best available quality?

Imad Alazani
  • 6,688
  • 7
  • 36
  • 58
Mebus
  • 71
  • 6
  • See [FFmpeg Wiki: vpx (WebM) Encoding Guide](https://trac.ffmpeg.org/wiki/vpxEncodingGuide). – llogan Jul 31 '13 at 18:38

1 Answers1

2

Try adding the switch "-qscale x".

The lower your x, the better is the quality (range 2 to 32, fractions allowed). It should work.

Grad
  • 118
  • 10