Skip to content

Notes on encoding settings

Kagami Hiiragi edited this page May 1, 2015 · 30 revisions

GOP

ffmpeg -c:v libvpx-vp9 would use kf_mode=audo and kf_max_dist=9999 (infinite) by default which means if you source is mostly static, you will have only one keyframe for the entire video.

Defaults

These are the defaults when using ffmpeg with libvpx 1.4.0:

  • g_threads=0
  • quality=good (deadline=1000000)
  • cpu-used=1 (-cpu-used = -speed)
  • frame-parallel=1
  • tile-columns=6
  • auto-alt-ref=1
  • lag-in-frames=15
  • aq-mode=0
  • kf_max_dist=9999 (-g)
Clone this wiki locally