From c1d0445045315566ee4dcf3842ad2904eba467b7 Mon Sep 17 00:00:00 2001 From: RealStickman Date: Thu, 10 Nov 2022 20:02:00 +0100 Subject: [PATCH] Less demanding AV1 presets. Bump to v0.0.3 --- encode_single_video.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/encode_single_video.py b/encode_single_video.py index 01ccb80..ccb6355 100755 --- a/encode_single_video.py +++ b/encode_single_video.py @@ -46,13 +46,13 @@ encoding: dict[str, Any] = { "veryslow", ], }, - "libaom-av1": {"crf": [20, 25, 30, 35, 40], "presets": [0, 2, 4, 6]}, - "libsvtav1": {"crf": [20, 25, 30, 35, 40], "presets": [0, 4, 8, 12]}, + "libaom-av1": {"crf": [20, 25, 30, 35, 40], "presets": [2, 3, 4, 6]}, + "libsvtav1": {"crf": [20, 25, 30, 35, 40], "presets": [4, 6, 8, 10]}, } # program version # make tests reproducible by tag -version = "v0.0.2" +version = "v0.0.3" # always round timestamp to integer def now():