Projects
Multimedia
ffx264
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 78
View file
ffx264.changes
Changed
@@ -1,4 +1,16 @@ ------------------------------------------------------------------- +Sat Feb 24 10:50:00 UTC 2018 - neutrino8@opensuse.org + +- Update to version 3.6.0 + * Set the eq saturation default value to 1.0 (same as filter default) + * Add the colorspace and colormatrix filters when doing an HDR + to SDR conversion + * Lower tonemap desat strength to 2.8 + * Support white point adaptation for HDR to SDR + * Moved the colorspace filter after the scale one + * Moved the pixel format filter near the end of the filter chain + +------------------------------------------------------------------- Sat Feb 17 11:52:00 UTC 2018 - neutrino8@opensuse.org - Update to version 3.6.5
View file
ffx264.spec
Changed
@@ -17,7 +17,7 @@ Name: ffx264 -Version: 3.6.5 +Version: 3.6.6 Release: 0 Summary: A small shell script for encoding to H.264 with ffmpeg License: GPL-2.0+
View file
ffx264-3.6.5.tar.gz/ChangeLog -> ffx264-3.6.6.tar.gz/ChangeLog
Changed
@@ -1,3 +1,12 @@ +2018-02-24 - ffx264 3.6.6 + * Set the eq saturation default value to 1.0 (same as filter default) + * Add the colorspace and colormatrix filters when doing an HDR + to SDR conversion + * Lower tonemap desat strength to 2.8 + * Support white point adaptation for HDR to SDR + * Moved the colorspace filter after the scale one + * Moved the pixel format filter near the end of the filter chain + 2018-02-17 - ffx264 3.6.5 * Fixed an issue where in some cases write-testing the output directory will fail due usage of readlink -f instead of
View file
ffx264-3.6.5.tar.gz/ffx264 -> ffx264-3.6.6.tar.gz/ffx264
Changed
@@ -2,8 +2,8 @@ # # Small script to encode to H.264/AVC video using FFmpeg and libx264. # Author: Grozdan "microchip" Nikolov <neutrino8@opensuse.org> -# Version: 3.6.5 -# Date: 2018-02-17 +# Version: 3.6.6 +# Date: 2018-02-24 # # ffx264 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.6.5" +version="3.6.6" CFG="$HOME/.ffx264" cfgversion="34" @@ -1005,16 +1005,16 @@ echo " 5 -> Hable" echo " 6 -> Mobius" echo - printf "Specify the Tone Mapping Algorithm [default is 6]: " + printf "Specify the Tone Mapping Algorithm [default is 4]: " read tmaopt case "$tmaopt" in 0) tm_algo="none" ;; 1) tm_algo="clip" ;; 2) tm_algo="linear" ;; 3) tm_algo="gamma" ;; - 4) tm_algo="reinhard" ;; + 4|"") tm_algo="reinhard" ;; 5) tm_algo="hable" ;; - 6|"") tm_algo="mobius" ;; + 6) tm_algo="mobius" ;; *) error "-> Invalid option!" exit 1 @@ -1030,19 +1030,19 @@ 3) printf "Specify the Exponent of the Function [default is 1.8]: " ;; - 4) + 4|"") printf "Specify the local Contrast Coefficient at the Display Peak [default is 0.5]: " ;; - 6|"") + 6) printf "Specify the Transition Point from Linear to Mobius Transform [default is 0.3]: " ;; esac read tmparam test ! -z "$tmparam" && tm_param=":param=$tmparam" - printf "Specify the Tonemap Desaturation Strength [default is 4.2]: " + printf "Specify the Tonemap Desaturation Strength [default is 2.8]: " read desat - test -z "$desat" && tm_desat=":desat=4.2" || tm_desat=":desat=$desat" + test -z "$desat" && tm_desat=":desat=2.8" || tm_desat=":desat=$desat" echo video_chars_func vchars echo @@ -1073,24 +1073,29 @@ colcopy="1" fi ;; - 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" ;; + 1) zscale="zscale=transfer=bt709"; colorspace="colormatrix=bt2020:bt709,colorspace=all=bt709:dither=fsb"; colorprim=":transfer=bt709:colorprim=bt709:colormatrix=bt709" ;; + 2) zscale="zscale=transfer=bt470bg"; colorspace="colormatrix=bt2020:bt470bg,colorspace=all=bt470bg:dither=fsb"; colorprim=":transfer=bt470bg:colorprim=bt470bg:colormatrix=bt470bg" ;; + 3) zscale="zscale=transfer=smpte170m"; colorspace="colormatrix=bt2020:smpte170m,colorspace=all=smpte170m:dither=fsb"; colorprim=":transfer=smpte170m:colorprim=smpte170m:colormatrix=smpte170m" ;; *) error "-> Invalid option!" exit 1 ;; esac if [ ! -z "$zscale" -a -z "$colcopy" ]; then + printf "Set the White Point Adaptation [bradford/vonkries/identity - default is bradford]: " + read wpa + test -z "$wpa" && wpadapt=":wpadapt=bradford" || wpadapt=":wpadapt=$wpa" + printf "Apply a Color Saturation Correction? [y/N]: " read satcor if [ "$satcor" = "y" -o "$satcor" = "Y" ]; then - printf "Specify the Saturation Strength [0.0-3.0 - default is 1.25]: " + printf "Specify the Saturation Strength [0.0-3.0 - default is 1.0 (no change)]: " read satval - test -z "$satval" && eq="eq=saturation=1.25,$pixformat" || eq="eq=saturation=$satval,$pixformat" + test ! -z "$satval" && eq="eq=saturation=$satval," fi fi test ! -z "$zscale" && tonemap="zscale=transfer=linear,tonemap=$tm_algo$tm_param$tm_desat,$zscale," + test ! -z "$colorspace" && colorspace="$colorspace$wpadapt," fi fi } @@ -3041,7 +3046,7 @@ test "$CHAPS" = "n" && CHPS="-map_chapters -1" -vidfilters="$(echo "$deinterlace$detelecine$tonemap$pixformat$colorspace$crop$deblock$denoise$scale$unsharp$rotate$eq$setpts$fps$framestep" | sed 's|,$||')" +vidfilters="$(echo "$deinterlace$detelecine$tonemap$crop$deblock$denoise$scale$colorspace$unsharp$eq$rotate$pixformat$setpts$fps$framestep" | sed 's|,$||')" test ! -z "$vidfilters" && vfilters="-vf $vidfilters"
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
.