Changes of Revision 47

ffhevc.changes Changed
x
 
1
@@ -1,4 +1,10 @@
2
 -------------------------------------------------------------------
3
+Tue Mar 28 19:04:00 UTC 2017 - neutrino8@opensuse.org
4
+
5
+- Update to version 3.2.3
6
+  * Update to the default encoding options
7
+
8
+-------------------------------------------------------------------
9
 Sat Mar 18 22:00:00 UTC 2017 - neutrino8@opensuse.org
10
 
11
 - Update to version 3.2.2
12
ffhevc.spec Changed
10
 
1
@@ -17,7 +17,7 @@
2
 
3
 
4
 Name:           ffhevc
5
-Version:        3.2.2
6
+Version:        3.2.3
7
 Release:        0
8
 Summary:        A small shell script for encoding to H.265/HEVC with ffmpeg
9
 License:        GPL-2.0+
10
ffhevc-3.2.2.tar.gz/ChangeLog -> ffhevc-3.2.3.tar.gz/ChangeLog Changed
8
 
1
@@ -1,3 +1,6 @@
2
+2017-03-28 - ffhevc 3.2.3
3
+   * Update to the default encoding options
4
+   
5
 2017-03-18 - ffhevc 3.2.2
6
    * Update colorspace entry for NTSC video
7
    * Fixed bug in the video_colorspace_func() values
8
ffhevc-3.2.2.tar.gz/ffhevc -> ffhevc-3.2.3.tar.gz/ffhevc Changed
30
 
1
@@ -2,8 +2,8 @@
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: 3.2.2
6
-# Date: 2017-03-18
7
+# Version: 3.2.3
8
+# Date: 2017-03-28
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
@@ -24,7 +24,7 @@
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="3.2.2"
17
+version="3.2.3"
18
 
19
 CFG="$HOME/.ffhevc"
20
 cfgversion="34"
21
@@ -111,7 +111,7 @@
22
 # libx265 parameters. Modify, if needed,
23
 # to fit your needs
24
 # merange is calculated as: ctu size - 4(luma) - 2(chroma) (- 1 if me=hex is used)
25
-X265PARAMS="ref=4:me=star:bframes=6:rd=5:subme=6:merange=58:strong-intra-smoothing=0:ctu=64:sao=0:cu-lossless=1:cutree=1:rskip=1:max-merge=3:rc-lookahead=60:aq-mode=3:aq-strength=1.0:rdoq-level=1:psy-rdoq=5.5:psy-rd=3.0:limit-modes=1:limit-refs=1:rd-refine=1:deblock=-2,-2: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"
26
+X265PARAMS="ref=4:me=star:bframes=6:rd=5:subme=5:merange=58:strong-intra-smoothing=0:ctu=64:sao=0:cu-lossless=1:cutree=1:rskip=1:max-merge=3:rc-lookahead=60:aq-mode=1:aq-strength=1.25:rdoq-level=2:psy-rdoq=5.5:psy-rd=3.5:limit-modes=1:limit-refs=3:limit-tu=4:rd-refine=1: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"
27
 
28
 # Leave empty to auto-detect ffmpeg/ffprobe or
29
 # set your custom ones (eg, /path/to/bin/ffmpeg)
30