I am definitely not an FFMPEG expert, but according to this document:
A preset is a collection of options that will provide a certain encoding speed to compression ratio. A slower preset will provide better compression (compression is quality per filesize). General usage is to use the slowest preset that you have patience for. Current presets in descending order of speed are: ultrafast, superfast, veryfast, faster, fast, medium, slow, slower, veryslow, placebo.
So as I understand it, the ffmpeg presets should not affect the quality of the output video, but should only determine the compression ratio / output file size. Consequently, assuming the same quality setting (I will use -crf 24), the files should be larger for e.g., faster preset than for the slower preset. That would be the only reason to use a slower preset - to get a smaller file size.
This turns out not to be the case. I encode a HD stream from a handycam using different presets, everything else is the same:
ffmpeg -y -i "$fname" -vf yadif=1,scale=-1:720 -acodec aac -ab 128k -ac 2 -strict experimental -vcodec libx264 -vpre slow -threads 2 -crf 24 "$outp"
Surprisingly, I get the smallest file size for veryfast preset! For example:
slower: output bitrate 3500kbps, encoding speed 17 fps, file size 29MBveryfast: output bitrate 3050kbps, encoding speed 34 fps, file size 25MB
Which I think is not as it should be. Now I wonder, is that due to a worse encoding quality for the veryfast preset? Or in my case using slower does simply not make sense for some reason?
-preset. I recommend using a more recent ffmpeg build if possible since development is so active. Also,-threads 0(auto) is default with non-ancient ffmpeg, so you don't have to declare that. You may also want to see the AAC Encoding Guide. – LordNeckbeard Jan 13 at 21:58