Projects
Multimedia
ffhevc
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 275
View file
ffhevc.changes
Changed
@@ -1,4 +1,13 @@ ------------------------------------------------------------------- +Fri Nov 21 20:53:00 UTC 2025 - microchip8@proton.me + +- Update to version 4.6.11 + * Fine-tune the built-in script preset + * Lower default CRF value from 23 to 22 + * Add option to change already set CRF value when + encoding in HDR + +------------------------------------------------------------------- Sun Nov 16 15:52:00 UTC 2025 - microchip8@proton.me - Update to version 4.6.10
View file
ffhevc.spec
Changed
@@ -17,7 +17,7 @@ Name: ffhevc -Version: 4.6.10 +Version: 4.6.11 Release: %mkrel 1 Summary: A small shell script for encoding to H.265/HEVC with FFmpeg License: GPL-2.0+
View file
ffhevc-4.6.10.tar.gz/ChangeLog -> ffhevc-4.6.11.tar.gz/ChangeLog
Changed
@@ -1,3 +1,9 @@ +2025-11-21 - ffhevc 4.6.11 + * Fine-tune the built-in script preset + * Lower default CRF value from 23 to 22 + * Add option to change already set CRF value when + encoding in HDR + 2025-11-16 - ffhevc 4.6.10 * Increase QP adaptation range for the built-in script preset to 1.3
View file
ffhevc-4.6.10.tar.gz/ffhevc -> ffhevc-4.6.11.tar.gz/ffhevc
Changed
@@ -4,8 +4,8 @@ # encoding to H.265/HEVC video using FFmpeg and libx265. # # Author: Grozdan "microchip" Nikolov <microchip8@proton.me> -# Version: 4.6.10 -# Date: 2025-11-16 +# Version: 4.6.11 +# Date: 2025-11-21 # # ffhevc is free software ; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -26,10 +26,10 @@ brown() { echo -e "\e0;33m$1\e0;39;49m"; } error() { echo -e "\e1;31m$1\e0;39;49m"; } -version="4.6.10" +version="4.6.11" CFG="$HOME/.ffhevc" -cfgversion="96" +cfgversion="97" genconfig_func() { cat<<EOF>>"$CFG" @@ -137,7 +137,7 @@ # libx265 parameters for the 'script' preset # merange is calculated as: ctu size - 4(luma) - 2(chroma) (- 1 if me=hex is used) -X265PARAMS="ref=4:me=umh:merange=52:subme=5:bframes=6:rd=4:rd-refine=0:qcomp=0.63:fades=1:strong-intra-smoothing=0:ctu=32:qg-size=32:sao=0:selective-sao=0:cu-lossless=1:cutree=1:tu-inter-depth=4:tu-intra-depth=4:max-merge=4:rskip=2:rskip-edge-threshold=1:rc-lookahead=60:aq-mode=1:aq-strength=1.1:qp-adaptation-range=1.3:rdoq-level=1:psy-rd=4.0:psy-rdoq=15.0:limit-modes=1:limit-refs=1:limit-tu=0:deblock=-3,-3:weightb=1:weightp=1:rect=1:amp=1:wpp=1:b-intra=1:b-adapt=2:b-pyramid=1:tskip=0:tskip-fast=0:fast-intra=0:early-skip=0:splitrd-skip=0:refine-mv=3:refine-intra=4:refine-inter=1" +X265PARAMS="ref=4:me=umh:merange=52:subme=6:bframes=6:rd=4:rd-refine=0:qcomp=0.60:fades=1:strong-intra-smoothing=0:ctu=32:qg-size=32:sao=0:selective-sao=0:cu-lossless=0:cutree=1:tu-inter-depth=4:tu-intra-depth=4:max-merge=4:rskip=2:rskip-edge-threshold=1:rc-lookahead=60:aq-mode=1:aq-strength=1.1:rdoq-level=1:psy-rd=3.0:psy-rdoq=3.0:limit-modes=1:limit-refs=1:limit-tu=0:deblock=-3,-3:weightb=1:weightp=1:rect=1:amp=1:wpp=1:b-intra=1:b-adapt=2:b-pyramid=1:tskip=0:tskip-fast=0:fast-intra=0:early-skip=0:splitrd-skip=0:refine-mv=3:refine-intra=4:refine-inter=1" # Leave empty to auto-detect ffmpeg/ffprobe/mplayer # or set your custom ones (eg, /path/to/bin/ffmpeg) @@ -724,9 +724,9 @@ ;; ""|crf) if -z "$CRF" ; then - printf "Specify a CRF Value for the Encoding 0-51 - default is 23: " + printf "Specify a CRF Value for the Encoding 0-51 - default is 22: " read crf - test -z "$crf" && CRF="23" || CRF="$crf" + test -z "$crf" && CRF="22" || CRF="$crf" fi ;; esac @@ -1769,6 +1769,22 @@ max_cll="\$max_cll" fi fi + case "$encmode" in + ""|crf) + if ! -z "$CRF" ; then + echo + green "-> It is advised to lower the CRF value for HDR encodings by 2 or 3!" + echo + printf "Do you want to Change the current CRF Value of $CRF? y/N: " + read chcrf + if "$chcrf" = "y" -o "$chcrf" = "Y" ; then + printf "Specify the new CRF value 0-51 - default is 20: " + read newcrf + test -z "$newcrf" && CRF="20" || CRF="$newcrf" + fi + fi + ;; + esac 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
.