Compare commits

...

8 commits

Author SHA1 Message Date
Martin Sekera
681e76361d add --subtitle 2023-05-29 11:21:33 +02:00
Martin Sekera
e1beb8312d Fix normalization crash on files with complex subtitle sets. Also increases normalization speed by 20-30 %. 2021-09-04 00:51:38 +02:00
Martin Sekera
aff7ec290d H265: increase default QP a bit 2021-08-29 17:57:46 +02:00
Martin Sekera
1b5ab6416b Increase normalization speed, fix normalization scope when --cut is set. 2021-08-29 15:26:47 +02:00
Martin Sekera
fbf90f2c89 add hardware HEVC encoder support, add matching profiles 2021-08-28 18:40:08 +02:00
Martin Sekera
f9b19ebdc4 fix bitrate not detected on some videos 2021-08-27 12:19:12 +02:00
Martin Sekera
ffd18a9757 over-video 2.0: presets, sane defaults, legible output... 2021-08-24 09:16:20 +02:00
Martin Sekera
a1e1f3ce79 default to AV1 encoding using rav1e 2021-04-03 11:58:22 +02:00
2 changed files with 774 additions and 195 deletions

File diff suppressed because it is too large Load diff

View file

@ -1,8 +1,8 @@
#! /usr/bin/env python3
# encoding: utf-8
major = 1 # VERSION_MAJOR_IDENTIFIER
minor = 115 # VERSION_MINOR_IDENTIFIER
# VERSION_LAST_MM 1.115
patch = 1 # VERSION_PATCH_IDENTIFIER
major = 2 # VERSION_MAJOR_IDENTIFIER
minor = 2 # VERSION_MINOR_IDENTIFIER
# VERSION_LAST_MM 2.2
patch = 2 # VERSION_PATCH_IDENTIFIER
str = ".".join(str(v) for v in (major, minor, patch))