Projects
Multimedia
ffhevc
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 79
View file
ffhevc.changes
Changed
@@ -1,4 +1,13 @@ ------------------------------------------------------------------- +Wed Jan 03 08:29:00 UTC 2018 - neutrino8@opensuse.org + +- Update to version 3.5.1 + * Don't hardcode the desaturation strength of the tonemap filter + but let is be an option + * Removed the matrix and primaries options in the zscale filter + as it leads to over-saturation of colors + +------------------------------------------------------------------- Tue Jan 02 12:03:00 UTC 2018 - neutrino8@opensuse.org - Update to version 3.5.0
View file
ffhevc.spec
Changed
@@ -17,7 +17,7 @@ Name: ffhevc -Version: 3.5.0 +Version: 3.5.1 Release: 0 Summary: A small shell script for encoding to H.265/HEVC with ffmpeg License: GPL-2.0+
View file
ffhevc-3.5.0.tar.gz/ChangeLog -> ffhevc-3.5.1.tar.gz/ChangeLog
Changed
@@ -1,3 +1,9 @@ +2018-01-03 - ffhevc 3.5.1 + * Don't hardcode the desaturation strength of the tonemap filter + but let is be an option + * Removed the matrix and primaries options in the zscale filter + as it leads to over-saturation of colors + 2018-01-02 - ffhevc 3.5.0 * Disabled audio metadata for batch mode when using audio copy, until I figure out how to do it in a decent way
View file
ffhevc-3.5.0.tar.gz/HDR_to_SDR_instructions.txt -> ffhevc-3.5.1.tar.gz/HDR_to_SDR_instructions.txt
Changed
@@ -10,7 +10,7 @@ follow the below instructions. - Answer 'y' to "Pixel Format Conversion" and select YUV420P (for 8-bit - encoding), YUV420P10 (for 10-bit) or YUV420P12 (for 12-bit). + encoding) or YUV420P10 (for 10-bit). - Answer 'y' to "HDR to SDR Conversion" and choose the tone mapping algorithm. I prefer Mobius but you are free to experiment with the other options. Next,
View file
ffhevc-3.5.0.tar.gz/ffhevc -> ffhevc-3.5.1.tar.gz/ffhevc
Changed
@@ -2,8 +2,8 @@ # # Small script to encode to H.265/HEVC video using FFmpeg and libx265. # Author: Grozdan "microchip" Nikolov <neutrino8@opensuse.org> -# Version: 3.5.0 -# Date: 2018-01-02 +# Version: 3.5.1 +# Date: 2018-01-03 # # ffhevc is free software ; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -24,7 +24,7 @@ brown() { echo -e "\e[0;33m$1\e[0;39;49m"; } error() { echo -e "\e[1;31m$1\e[0;39;49m"; } -version="3.5.0" +version="3.5.1" CFG="$HOME/.ffhevc" cfgversion="38" @@ -1006,6 +1006,9 @@ exit 1 ;; esac + printf "Specify the Desaturation Strength [default is 2.3]: " + read desat + test -z "$desat" && tm_desat="2.3" || tm_desat="$desat" echo video_chars_func vchars echo @@ -1030,19 +1033,19 @@ smpte2084|bt2020-10) ztrans="2020_10"; coltrans="bt2020-10" ;; *) ztrans="${VCHARS[3]}"; coltrans="${VCHARS[3]}" ;; esac - zscale=",zscale=transfer=$ztrans:primaries=${VCHARS[4]}:matrix=${VCHARS[2]}" + zscale="zscale=transfer=$ztrans" colorprim=":transfer=$coltrans:colorprim=${VCHARS[4]}:colormatrix=${VCHARS[2]}" fi ;; - 1) zscale=",zscale=transfer=bt709:primaries=bt709:matrix=bt709"; colorprim=":transfer=bt709:colorprim=bt709:colormatrix=bt709" ;; - 2) zscale=",zscale=transfer=bt470bg:primaries=bt470bg:matrix=bt470bg"; colorprim=":transfer=bt470bg:colorprim=bt470bg:colormatrix=bt470bg" ;; - 3) zscale=",zscale=transfer=smpte170m:primaries=smpte170m:matrix=smpte170m"; colorprim=":transfer=smpte170m:colorprim=smpte170m:colormatrix=smpte170m" ;; + 1) zscale="zscale=transfer=bt709"; colorprim=":transfer=bt709:colorprim=bt709:colormatrix=bt709" ;; + 2) zscale="zscale=transfer=bt470bg"; colorprim=":transfer=bt470bg:colorprim=bt470bg:colormatrix=bt470bg" ;; + 3) zscale="zscale=transfer=smpte170m"; colorprim=":transfer=smpte170m:colorprim=smpte170m:colormatrix=smpte170m" ;; *) error "-> Invalid option!" exit 1 ;; esac - test ! -z "$zscale" && tonemap="zscale=transfer=linear,tonemap=$tm_algo:desat=2.5$zscale," + test ! -z "$zscale" && tonemap="zscale=transfer=linear,tonemap=$tm_algo:desat=$tm_desat,$zscale," fi fi }
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.