Changes of Revision 97
ffhevc.changes
Changed
x
1
2
-------------------------------------------------------------------
3
+Sat Dec 22 11:22:00 UTC 2018 - neutrino8@opensuse.org
4
+
5
+- Update to version 3.6.5
6
+ * Add the new tune animation option
7
+ * Updated the man page
8
+
9
+-------------------------------------------------------------------
10
Tue Jul 10 20:35:00 UTC 2018 - neutrino8@opensuse.org
11
12
- Update to version 3.6.4
13
ffhevc.spec
Changed
10
1
2
3
4
Name: ffhevc
5
-Version: 3.6.4
6
+Version: 3.6.5
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.6.4.tar.gz/ChangeLog -> ffhevc-3.6.5.tar.gz/ChangeLog
Changed
16
1
2
-2019-07-10 - ffhevc 3.6.4
3
+2018-12-22 - ffhevc 3.6.5
4
+ * Add the new tune animation option
5
+ * Updated the man page
6
+
7
+2018-07-10 - ffhevc 3.6.4
8
* Revert previous change. Linear transfer is already set
9
in the $tonemap variable
10
11
-2019-07-09 - ffhevc 3.6.3
12
+2018-07-09 - ffhevc 3.6.3
13
* HDR to SDR: transfer to linear light before doing bt2020-10/12
14
transfer
15
16
ffhevc-3.6.4.tar.gz/ffhevc -> ffhevc-3.6.5.tar.gz/ffhevc
Changed
38
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: 3.6.4
6
-# Date: 2018-07-10
7
+# Version: 3.6.5
8
+# Date: 2018-12-22
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="3.6.4"
17
+version="3.6.5"
18
19
CFG="$HOME/.ffhevc"
20
cfgversion="38"
21
22
;;
23
t)
24
case "$OPTARG" in
25
- psnr|ssim|grain|zerolatency|fastdecode) true ;;
26
+ psnr|ssim|grain|zerolatency|fastdecode|animation) true ;;
27
*)
28
error "-> Invalid tune profile!"
29
error "-> Use: $(basename $0) -h"
30
31
echo " grain"
32
echo " zerolatency"
33
echo " fastdecode"
34
+ echo " animation"
35
echo
36
brown " -e"
37
echo " Edit the configuration file."
38
ffhevc-3.6.4.tar.gz/ffhevc.1 -> ffhevc-3.6.5.tar.gz/ffhevc.1
Changed
19
1
2
.de IPs
3
.IP "\\$1"
4
..
5
-.TH ffhevc 1 "Nov 14, 2016"
6
+.TH ffhevc 1 "Dec 22, 2018"
7
.SH NAME
8
ffhevc
9
10
11
.B fastdecode
12
.br
13
.B zerolatency
14
+.br
15
+.B animation
16
.RE
17
.
18
.TP
19