Projects
Multimedia
ffhevc
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 55
View file
ffhevc.changes
Changed
@@ -1,4 +1,12 @@ ------------------------------------------------------------------- +Tue May 30 11:35:00 UTC 2017 - neutrino8@opensuse.org + +- Update to version 3.2.9 + * Bugfix: use an if conditional to set hdr-opt option + * Increase default CRF value to 21 + * Tune the default encoding parameters + +------------------------------------------------------------------- Mon May 29 08:05:00 UTC 2017 - neutrino8@opensuse.org - Update to version 3.2.8
View file
ffhevc.spec
Changed
@@ -17,7 +17,7 @@ Name: ffhevc -Version: 3.2.8 +Version: 3.2.9 Release: 0 Summary: A small shell script for encoding to H.265/HEVC with ffmpeg License: GPL-2.0+
View file
ffhevc-3.2.8.tar.gz/ChangeLog -> ffhevc-3.2.9.tar.gz/ChangeLog
Changed
@@ -1,3 +1,8 @@ +2019-05-30 - ffhevc 3.2.9 + * Bugfix: use an if conditional to set hdr-opt option + * Increase default CRF value to 21 + * Tune the default encoding parameters + 2017-05-29 - ffhevc 3.2.8 * Added support for Dynamic HDR10+ JSON files. Requires libx265 to be compiled with Dynamic HDR10+ support
View file
ffhevc-3.2.8.tar.gz/ffhevc -> ffhevc-3.2.9.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.2.8 -# Date: 2017-05-29 +# Version: 3.2.9 +# Date: 2017-05-30 # # 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.2.8" +version="3.2.9" CFG="$HOME/.ffhevc" cfgversion="34" @@ -111,7 +111,7 @@ # libx265 parameters. Modify, if needed, # to fit your needs # merange is calculated as: ctu size - 4(luma) - 2(chroma) (- 1 if me=hex is used) -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:tu-inter-depth=4:tu-intra-depth=4: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" +X265PARAMS="ref=4:me=star:bframes=6:rd=5:subme=3:merange=58:strong-intra-smoothing=0:ctu=64:sao=0:cu-lossless=0:cutree=1:tu-inter-depth=3:tu-intra-depth=3:rskip=1:max-merge=3:rc-lookahead=60:aq-mode=1:aq-strength=1.1:rdoq-level=2:psy-rdoq=4.5:psy-rd=2.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" # Leave empty to auto-detect ffmpeg/ffprobe or # set your custom ones (eg, /path/to/bin/ffmpeg) @@ -606,9 +606,9 @@ ;; *|"") if [ -z "$CRF" ]; then - printf "Specify a CRF Value for the Encoding [0-51 - default is 20]: " + printf "Specify a CRF Value for the Encoding [0-51 - default is 21]: " read crf - test -z "$crf" && CRF="20" || CRF="$crf" + test -z "$crf" && CRF="21" || CRF="$crf" fi ;; esac @@ -1032,7 +1032,9 @@ test ! -z "$clli" && max_cll=":max-cll=\"$clli\"" printf "Add Luma/Chroma Offsets (hdr-opt)? [y/N]: " read lcoffset - test ! -z "$lcoffset" && hdr_opt=":hdr-opt=1" + if [ "$lcoffset" = "y" -o "$lcoffset" = "Y" ]; then + hdr_opt=":hdr-opt=1" + fi fi printf "Use Dynamic HDR10+ JSON file? [y/N]: "
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
.