Skip to main content
Reduce video file size by re-encoding at a higher CRF value and lower audio bitrate. Useful for faster uploads, email-friendly sizes, or bandwidth-limited playback.

Code

How the FFmpeg command works

  • -crf 28 — higher CRF = smaller file (23 is default, 28 is visibly compressed but acceptable; push to 30–32 for aggressive size reduction)
  • -preset slow — slower encoder uses more analysis and produces a smaller file at the same quality
  • -c:a aac -b:a 96k — AAC audio at 96 kbps (down from 192 kbps)
  • {{out_1}} — output file
Tune -crf first; only drop the audio bitrate further if size is still too high.

Response