How to encode AV1 with FFmpeg and libaom

Поделиться
HTML-код
  • Опубликовано: 25 ноя 2024

Комментарии • 5

  • @dogukankuru1969
    @dogukankuru1969 3 месяца назад +1

    Great video!

  • @GeoffreyAngapa
    @GeoffreyAngapa  5 месяцев назад

    If you have time to spare, use -cpu-used 3 instead.

  • @treymore4975
    @treymore4975 Месяц назад

    is there a way to convert videos as a batch?

    • @GeoffreyAngapa
      @GeoffreyAngapa  Месяц назад

      Use the following in your batch file. It will process all MKV and MP4 files in the folder.
      for %%i in (*.mkv *.mp4) do (
      ffmpeg -i "%%i" -pix_fmt yuv420p10le -c:v libaom-av1 -cpu-used 4 -crf 18 -arnr-strength 1 -lag-in-frames 48 -g 240 -aom-params enable-qm=1 -c:a copy "%%i_OUTPUT.mkv"
      )