Projects
Multimedia
ffhevc
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 267
View file
ffhevc.changes
Changed
@@ -1,4 +1,12 @@ ------------------------------------------------------------------- +Sun Nov 09 11:43:00 UTC 2025 - microchip8@proton.me + +- Update to version 4.6.5 + * Set max-cll to 0,0 in case no values were detected + * Warn user that HDR10 will be disabled in case of + unavailable master-display values + +------------------------------------------------------------------- Sat Nov 01 07:07:00 UTC 2025 - microchip8@proton.me - Update to version 4.6.4
View file
ffhevc.spec
Changed
@@ -17,7 +17,7 @@ Name: ffhevc -Version: 4.6.4 +Version: 4.6.5 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.4.tar.gz/ChangeLog -> ffhevc-4.6.5.tar.gz/ChangeLog
Changed
@@ -1,3 +1,8 @@ +2025-11-09 - ffhevc 4.6.5 + * Set max-cll to 0,0 in case no values were detected + * Warn user that HDR10 will be disabled in case of + unavailable master-display values + 2025-11-01 - ffhevc 4.6.4 * Reworked the internal script preset * Lowered the Cb/Cr qp offsets to -2 for HDR encodings
View file
ffhevc-4.6.4.tar.gz/ffhevc -> ffhevc-4.6.5.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 <microchip8@proton.me> -# Version: 4.6.4 -# Date: 2025-11-01 +# Version: 4.6.5 +# Date: 2025-11-09 # # 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 "\e0;33m$1\e0;39;49m"; } error() { echo -e "\e1;31m$1\e0;39;49m"; } -version="4.6.4" +version="4.6.5" CFG="$HOME/.ffhevc" cfgversion="93" @@ -126,7 +126,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=7:bframes=6:rd=4:rd-refine=0:qcomp=0.62: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:qp-adaptation-range=1.2:rc-lookahead=60:aq-mode=1:aq-strength=1.0: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=1:refine-inter=1" +X265PARAMS="ref=4:me=umh:merange=52:subme=7: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:qp-adaptation-range=1.2:rc-lookahead=60:aq-mode=1:aq-strength=1.0: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" # Leave empty to auto-detect ffmpeg/ffprobe/mplayer # or set your custom ones (eg, /path/to/bin/ffmpeg) @@ -1663,11 +1663,17 @@ md) if ! -z "$(echo "$master_display" | grep 'ENOT_AVAIL')" ; then master_display=""; nohdr="1" + echo + error "-> Disabling HDR10 due to unavailable values!" + echo fi ;; cll) if ! -z "$(echo "$max_cll" | grep 'ENOT_AVAIL')" ; then - max_cll=""; nohdr="1" + max_cll=":max-cll=\"0,0\"" + echo + error "-> Setting max-cll to 0,0 due to unavailable values!" + echo fi ;; esac @@ -1683,7 +1689,6 @@ check_hdr_func md else master_display=":master-display=\"$mdcv\"" - check_hdr_func md fi printf "Specify the Content Light Level Info (max-cll) default is see above: " read maxcll @@ -1692,7 +1697,6 @@ check_hdr_func cll else max_cll=":max-cll=\"$maxcll\"" - check_hdr_func cll fi printf "Flag the file as HLG (Hybrid Log Gamma)? y/N: " read fhlg @@ -1704,14 +1708,7 @@ if "$lcopt" = "y" -o "$lcopt" = "Y" ; then hdr10_opt=":hdr10-opt=1" fi - if "$nohdr" = "1" ; then - hdr10=":hdr10=0" - echo - error "-> Disabling HDR10 due to missing value(s)!" - echo - else - hdr10=":hdr10=1" - fi + test "$nohdr" = "1" && hdr10=":hdr10=0" || hdr10=":hdr10=1" 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
.