Using ffmpeg to encode a high quality video

175,509

Solution 1

A couple of things:

  • You need to set the video bitrate. I have never used minrate and maxrate so I don't know how exactly they work, but by setting the bitrate using the -b switch, I am able to get high quality video. You need to come up with a bitrate that offers a good tradeoff between compression and video quality. You may have to experiment with this because it all depends on the frame size, frame rate and the amount of motion in the content of your video. Keep in mind that DVD tends to be around 4-5 Mbit/s on average for 720x480, so I usually start from there and decide whether I need more or less and then just experiment. For example, you could add -b 5000k to the command line to get more or less DVD video bitrate.

  • You need to specify a video codec. If you don't, ffmpeg will default to MPEG-1 which is quite old and does not provide near the amount of compression as MPEG-4 or H.264. If your ffmpeg version is built with libx264 support, you can specify -vcodec libx264 as part of the command line. Otherwise -vcodec mpeg4 will also do a better job than MPEG-1, but not as well as x264.

  • There are a lot of other advanced options that will help you squeeze out the best quality at the lowest bitrates. Take a look here for some examples.

Solution 2

You need to specify the -vb option to increase the video bitrate, otherwise you get the default which produces smaller videos but with more artifacts.

Try something like this:

ffmpeg -r 25 -i %4d.png -vb 20M myvideo.mpg

Solution 3

Make sure the PNGs are fully opaque before creating the video

e.g. with imagemagick, give them a black background:

convert 0.png -background black -flatten +matte 0_opaque.png

From my tests, no bitrate or codec is sufficient to make the video look good if you feed ffmpeg PNGs with transparency

Share:
175,509
CakeMaster
Author by

CakeMaster

Updated on January 07, 2020

Comments

  • CakeMaster
    CakeMaster over 4 years

    I have a set of video frames saved as images in a directory, and I'm trying to encode these to a good quality video, however every setting and every format I try produces very noticeable artifacts.

    The basic command is this:

    ffmpeg -r 25 -i %4d.png myvideo.mpg
    

    and I've tried the minrate and maxrate flags. Any of {mpg, avi, mov, flv} formats will do.

    Any suggestions for settings? Final file size is not an issue.

  • CakeMaster
    CakeMaster almost 14 years
    The images are from a video sequence originally. They've just had a bit of cropping, scaling and whatnot done with imagemagick. The effects are definitely compression artifacts. I've now seen this post, which seems to have an answer: stackoverflow.com/questions/3158235/…
  • JustBoo
    JustBoo almost 14 years
    @CakeMaster I didn't mention lossy compression because you have ".png" images in your example. .png's can be lossy, but I find they usually are not. .jpg's are almost always lossy therefore the artifacts when using them. If you can, you might resave your .png's with lossless compression.
  • Display Name
    Display Name about 9 years
    Constant bitrate is bad for quality. Using constant rate factor is superior (it's one of x264 modes of operation). For example: ffmpeg -i … -c:a copy -c:v libx264 -crf 18 -preset veryslow …. 18 is the CRF with very marginal quality loss, but bitrate will be probably low. And you can try bigger CRF values if you need smaller file size. And as you see, this is pretty simple.
  • mateuszb
    mateuszb almost 7 years
    note that -b has to be before the video but after the input -i
  • Matěj Kripner
    Matěj Kripner over 4 years
    This solved the problem for me.
  • dasmy
    dasmy over 3 years
    This hint solved a really annoying low video quality. Thanks a lot.
  • Majiick
    Majiick almost 3 years
    What if one is producing a video with transparency?