Changes of Revision 190
ffhevc.changes
Changed
x
1
2
-------------------------------------------------------------------
3
+Tue Dec 24 04:29:00 UTC 2019 - neutrino8@opensuse.org
4
+
5
+- Update to version 4.1.1
6
+ * Switch to AQ mode 2
7
+ * Increase default bframes from 6 to 8
8
+ * Keep quantization group size at the same size as
9
+ the max CTU
10
+
11
+-------------------------------------------------------------------
12
Mon Dec 23 06:10:00 UTC 2019 - neutrino8@opensuse.org
13
14
- Update to version 4.1.0
15
ffhevc.spec
Changed
10
1
2
3
4
Name: ffhevc
5
-Version: 4.1.0
6
+Version: 4.1.1
7
Release: 0
8
Summary: A small shell script for encoding to H.265/HEVC with FFmpeg
9
License: GPL-2.0+
10
ffhevc-4.1.0.tar.gz/ChangeLog -> ffhevc-4.1.1.tar.gz/ChangeLog
Changed
11
1
2
+2019-12-24 - ffhevc 4.1.1
3
+ * Switch to AQ mode 2
4
+ * Increase default bframes from 6 to 8
5
+ * Keep quantization group size at the same size as
6
+ the max CTU
7
+
8
2019-12-23 - ffhevc 4.1.0
9
* Default encoding options tweaks. Add qcomp=0.7 and
10
go back to standard non-hierarchical motion estimation.
11
ffhevc-4.1.0.tar.gz/ffhevc -> ffhevc-4.1.1.tar.gz/ffhevc
Changed
34
1
2
#
3
# Small script to encode to H.265/HEVC video using FFmpeg and libx265.
4
# Author: Grozdan "microchip" Nikolov <neutrino8@opensuse.org>
5
-# Version: 4.1.0
6
-# Date: 2019-12-23
7
+# Version: 4.1.1
8
+# Date: 2019-12-24
9
#
10
# ffhevc is free software ; you can redistribute it and/or modify
11
# it under the terms of the GNU General Public License as published by
12
13
brown() { echo -e "\e[0;33m$1\e[0;39;49m"; }
14
error() { echo -e "\e[1;31m$1\e[0;39;49m"; }
15
16
-version="4.1.0"
17
+version="4.1.1"
18
19
CFG="$HOME/.ffhevc"
20
-cfgversion="57"
21
+cfgversion="58"
22
23
genconfig_func() {
24
cat<<EOF>>"$CFG"
25
26
# libx265 parameters. Modify, if needed,
27
# to fit your needs
28
# merange is calculated as: ctu size - 4(luma) - 2(chroma) (- 1 if me=hex is used)
29
-X265PARAMS="ref=5:hme=0:me=star:merange=58:bframes=6:rd=4:rd-refine=0:subme=5:qcomp=0.7:strong-intra-smoothing=0:ctu=64:sao=0:selective-sao=0:cu-lossless=0:cutree=1:tu-inter-depth=4:tu-intra-depth=4:rskip=1:max-merge=3:rc-lookahead=40:aq-mode=1:aq-strength=1.0:rdoq-level=1:psy-rdoq=1.5:psy-rd=2.5:qg-size=32:limit-modes=1:limit-refs=0:limit-tu=0:deblock=-3,-3:weightb=1:weightp=1:rect=1:amp=0:wpp=1:pmode=0:pme=0:b-intra=1:b-adapt=2:b-pyramid=1:tskip-fast=0:fast-intra=0:early-skip=0:min-keyint=24:keyint=240"
30
+X265PARAMS="ref=5:hme=0:me=star:merange=58:bframes=8:rd=4:rd-refine=0:subme=5:qcomp=0.7:strong-intra-smoothing=0:ctu=64:sao=0:selective-sao=0:cu-lossless=0:cutree=1:tu-inter-depth=4:tu-intra-depth=4:rskip=1:max-merge=3:rc-lookahead=40:aq-mode=2:aq-strength=1.0:rdoq-level=1:psy-rdoq=1.5:psy-rd=2.5:limit-modes=1:limit-refs=0:limit-tu=0:deblock=-3,-3:weightb=1:weightp=1:rect=1:amp=0:wpp=1:pmode=0:pme=0:b-intra=1:b-adapt=2:b-pyramid=1:tskip-fast=0:fast-intra=0:early-skip=0:min-keyint=24:keyint=240"
31
32
# Leave empty to auto-detect ffmpeg/ffprobe/mplayer
33
# or set your custom ones (eg, /path/to/bin/ffmpeg)
34