Using ffmpeg, why the bitrate shown during processing differs so much from the final bitrate after processing?
This command on a 1080p source:
ffmpeg -i "$name" -i "$subname" -map 0 -map 1 -vf scale=-1:720 -c:v libx264 -preset veryslow -crf 21 -c:a aac -b:a 256k -c:s:0 srt -disposition:s:0 default -metadata:s:s:0 language=eng -metadata:s:v:0 title="$title" "$new"
Which essentially averages 1300-1400 kBit/s. But when I calculate the bitrate of the resulting video using mkvinfo -t
the bitrate shown sits at ~970-1000 kBit/s and that's not even close to averaging the ~1300 kBit/s shown throughout processing. What is causing the disparity?