Projects
Multimedia
ffx264
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 74
View file
ffx264.changes
Changed
@@ -1,4 +1,14 @@ ------------------------------------------------------------------- +Sat Jan 06 00:18:00 UTC 2018 - neutrino8@opensuse.org + +- Update to version 3.6.2 + * Moved the eq filter to almost the end of the video filter chain + as it can lead to banding in certain cases in case the filter + is in front of most other ones + * If the eq filter is used, also insert the format one after it + if a pixel format has been chosen + +------------------------------------------------------------------- Thu Jan 04 20:09:00 UTC 2018 - neutrino8@opensuse.org - Update to version 3.6.1
View file
ffx264.spec
Changed
@@ -17,7 +17,7 @@ Name: ffx264 -Version: 3.6.1 +Version: 3.6.2 Release: 0 Summary: A small shell script for encoding to H.264 with ffmpeg License: GPL-2.0+
View file
ffx264-3.6.1.tar.gz/ChangeLog -> ffx264-3.6.2.tar.gz/ChangeLog
Changed
@@ -1,3 +1,10 @@ +2018-01-06 - ffx264 3.6.2 + * Moved the eq filter to almost the end of the video filter chain + as it can lead to banding in certain cases in case the filter + is in front of most other ones + * If the eq filter is used, also insert the format one after it + if a pixel format has been chosen + 2018-01-04 - ffx264 3.6.1 * Support tweaking the tonemap algorithms for HDR to SDR conversion * Increased default desat tonemap value from 2.3 to 4.2
View file
ffx264-3.6.1.tar.gz/ffx264 -> ffx264-3.6.2.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.1 -# Date: 2018-01-04 +# Version: 3.6.2 +# Date: 2018-01-06 # # 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.1" +version="3.6.2" CFG="$HOME/.ffx264" cfgversion="34" @@ -1068,14 +1068,14 @@ bt2020-12) ztrans="2020_12"; coltrans="bt2020-12" ;; *) ztrans="${VCHARS[3]}"; coltrans="${VCHARS[3]}" ;; esac - zscale=",zscale=transfer=$ztrans" + zscale="zscale=transfer=$ztrans" colorprim=":transfer=$coltrans:colorprim=${VCHARS[4]}:colormatrix=${VCHARS[2]}" 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"; 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 @@ -1087,10 +1087,10 @@ if [ "$satcor" = "y" -o "$satcor" = "Y" ]; then printf "Specify the Saturation Strength [0.0-3.0 - default is 1.25]: " read satval - test -z "$satval" && eq=",eq=saturation=1.25" || eq=",eq=saturation=$satval" + test -z "$satval" && eq="eq=saturation=1.25,$pixformat" || eq="eq=saturation=$satval,$pixformat" fi fi - test ! -z "$zscale" && tonemap="zscale=transfer=linear,tonemap=$tm_algo$tm_param$tm_desat$zscale$eq," + test ! -z "$zscale" && tonemap="zscale=transfer=linear,tonemap=$tm_algo$tm_param$tm_desat,$zscale," fi fi } @@ -3039,7 +3039,7 @@ test "$CHAPS" = "n" && CHPS="-map_chapters -1" -vidfilters="$(echo "$deinterlace$detelecine$tonemap$pixformat$colorspace$crop$deblock$denoise$scale$unsharp$rotate$setpts$fps$framestep" | sed 's|,$||')" +vidfilters="$(echo "$deinterlace$detelecine$tonemap$pixformat$colorspace$crop$deblock$denoise$scale$unsharp$rotate$eq$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
.