Changes between Version 19 and Version 20 of Encode/AV1


Ignore:
Timestamp:
Dec 20, 2020, 8:56:01 PM (6 years ago)
Author:
llogan
Comment:

removed the experimental flag for libaom 2.0.0 or newer

Legend:

Unmodified
Added
Removed
Modified
  • Encode/AV1

    v19 v20  
    2323{{{
    2424#!div style="border: 1px solid #e5e5c7; margin: 1em; background-color: #ffd;"
    25 '''Note:''' AV1 encoding is very slow in comparison to VP9 or H.264, and considered experimental at this stage. Hence the use of `-strict experimental` (or the alias `-strict -2`) is necessary.
     25'''Note:''' Users of libaom older than version 2.0.0 will need to add `-strict experimental` (or the alias `-strict -2`).
    2626}}}
    2727
     
    3333
    3434{{{
    35 ffmpeg -i input.mp4 -c:v libaom-av1 -crf 30 -b:v 0 -strict experimental av1_test.mkv
     35ffmpeg -i input.mp4 -c:v libaom-av1 -crf 30 -b:v 0 av1_test.mkv
    3636}}}
    3737
     
    4343
    4444{{{
    45 ffmpeg -i input.mp4 -c:v libaom-av1 -crf 30 -b:v 2000k -strict experimental output.mkv
     45ffmpeg -i input.mp4 -c:v libaom-av1 -crf 30 -b:v 2000k output.mkv
    4646}}}
    4747
     
    5151
    5252{{{
    53 ffmpeg -i input.mp4 -c:v libaom-av1 -minrate 500k -b:v 2000k -maxrate 2500k -strict experimental output.mp4
     53ffmpeg -i input.mp4 -c:v libaom-av1 -minrate 500k -b:v 2000k -maxrate 2500k output.mp4
    5454}}}
    5555
     
    6868
    6969{{{
    70 ffmpeg -i input.mp4 -c:v libaom-av1 -strict experimental -b:v 2M -pass 1 -an -f null /dev/null && \
    71 ffmpeg -i input.mp4 -c:v libaom-av1 -strict experimental -b:v 2M -pass 2 -c:a libopus output.mkv
     70ffmpeg -i input.mp4 -c:v libaom-av1 -b:v 2M -pass 1 -an -f null /dev/null && \
     71ffmpeg -i input.mp4 -c:v libaom-av1 -b:v 2M -pass 2 -c:a libopus output.mkv
    7272}}}
    7373
     
    8282
    8383{{{
    84 ffmpeg -i input.mp4 -c:v libaom-av1 -b:v 2M -strict experimental output.mkv
     84ffmpeg -i input.mp4 -c:v libaom-av1 -b:v 2M output.mkv
    8585}}}
    8686