Projects
Multimedia
ffhevc
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 283
View file
ffhevc.changes
Changed
@@ -1,4 +1,13 @@ ------------------------------------------------------------------- +Sat Jan 10 09:45:00 UTC 2026 - microchip8@proton.me + +- Update to version 4.6.17 + * Dolby Vision encoding requires vbv maxrate/bufsize so + check if it's set or not. If not, print notice and exit + * Fix VBV maxrate/bufsize code + * Cosmetics + +------------------------------------------------------------------- Fri Jan 09 11:35:00 UTC 2026 - microchip8@proton.me - Update to version 4.6.16
View file
ffhevc.spec
Changed
@@ -17,7 +17,7 @@ Name: ffhevc -Version: 4.6.16 +Version: 4.6.17 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.16.tar.gz/ChangeLog -> ffhevc-4.6.17.tar.gz/ChangeLog
Changed
@@ -1,3 +1,9 @@ +2026-01-10 - ffhevc 4.6.17 + * Dolby Vision encoding requires vbv maxrate/bufsize so + check if it's set or not. If not, print notice and exit + * Fix VBV maxrate/bufsize code + * Cosmetics + 2026-01-09 - ffehvc 4.6.16 * Also turn on Dolby Vision in ffmpeg, not just in x265 * Optimize lanczos3/4 zimg scaler code selection
View file
ffhevc-4.6.16.tar.gz/ffhevc -> ffhevc-4.6.17.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.16 -# Date: 2026-01-09 +# Version: 4.6.17 +# Date: 2026-01-10 # # 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,7 +26,7 @@ brown() { echo -e "\e0;33m$1\e0;39;49m"; } error() { echo -e "\e1;31m$1\e0;39;49m"; } -version="4.6.16" +version="4.6.17" CFG="$HOME/.ffhevc" cfgversion="100" @@ -769,10 +769,15 @@ if "$vbv" = "y" -o "$vbv" = "Y" ; then printf "Specify the VBV Maxrate in kbps default is 5000: " read vbv_max - test -z "$vbv_max" && vbv_maxrate=":vbv_maxrate=5000"; ffvbv_maxrate="-maxrate 5000k" || vbv_maxrate=":vbv_maxrate=$vbv_max"; ffvbv_maxrate="-maxrate ${vbv_max}k" + test -z "$vbv_max" && vbvmax="5000" || vbvmax="$vbv_max" + vbv_maxrate=":vbv_maxrate=$vbvmax" + ffvbv_maxrate="-maxrate ${vbvmax}k" + printf "Specify the VBV Buffer Size in kbps default is 6000: " read vbv_buf - test -z "$vbv_buf" && vbv_bufsize=":vbv_bufsize=6000"; ffvbv_bufsize="-bufsize 6000k" || vbv_bufsize=":vbv_bufsize=$vbv_buf"; ffvbv_bufsize="-bufsize ${vbv_buf}k" + test -z "$vbv_buf" && vbvbuf="6000" || vbvbuf="$vbv_buf" + vbv_bufsize=":vbv_bufsize=$vbvbuf" + ffvbv_bufsize="-bufsize ${vbvbuf}k" fi printf "Set the Maximum Decoder Level? y/N: " @@ -1677,16 +1682,26 @@ dolbyvision="-dolbyvision 1" printf "Provide the Dolby Vision RPU File press 'Enter' to skip: " - read dvrpu + read -e dvrpu if ! -z "$dvrpu" ; then if ! -f "$dvrpu" ; then echo error "-> No such file! Skipping" echo + rpu="0" else dolby_vision_rpu=":dolby-vision-rpu=\"$(realpath "$dvrpu")\"" fi fi + + # No need to check for bufsize, only maxrate + if -z "$vbv_maxrate" ; then + test -z "$rpu" && echo + error "-> Dolby Vision encoding requires VBV maxrate & bufsize for enabling HRD!" + error "-> Please set the VBV maxrate & buffer size!" + echo + exit 1 + fi fi if -z "$batchmode" ; then @@ -1803,7 +1818,9 @@ case "$encmode" in ""|crf) if ! -z "$CRF" ; then - echo + case "$addhdr" in + n|N|"") echo ;; + esac green "-> It is recommended to lower the CRF value by 2 or 3 for HDR encodings" echo printf "Do you want to Change the current CRF Value of $CRF? 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
.