Projects
Multimedia
ffhevc
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 263
View file
ffhevc.changes
Changed
@@ -1,4 +1,19 @@ ------------------------------------------------------------------- +Sat Jun 28 08:50:00 UTC 2025 - microchip8@proton.me + +- Update to version 4.6.1 + * Lower B-frames from 8 to 6 in the script preset + * Disable tskip in the script preset + * Add negative Chroma QP offsets for HDR content + +------------------------------------------------------------------- +Wed Jun 04 12:05:00 UTC 2025 - microchip8@proton.me + +- Update to version 4.6.0 + * Delete side data when doing tone mapping to SDR + * Updated the AUTHORS, README and man page files + +------------------------------------------------------------------- Sun Feb 02 13:17:00 UTC 2025 - neutrino8@gmail.com - Update to version 4.5.19
View file
ffhevc.spec
Changed
@@ -17,7 +17,7 @@ Name: ffhevc -Version: 4.5.19 +Version: 4.6.1 Release: %mkrel 1 Summary: A small shell script for encoding to H.265/HEVC with FFmpeg License: GPL-2.0+
View file
ffhevc-4.5.19.tar.gz/AUTHORS -> ffhevc-4.6.1.tar.gz/AUTHORS
Changed
@@ -1,3 +1,3 @@ -- Grozdan Nikolov aka microchip <neutrino8@gmail.com> +- Grozdan Nikolov aka microchip <microchip8@proton.me> Author/maintainer/developer/packager
View file
ffhevc-4.5.19.tar.gz/ChangeLog -> ffhevc-4.6.1.tar.gz/ChangeLog
Changed
@@ -1,3 +1,12 @@ +2025-06-28 - ffhevc 4.6.1 + * Lower B-frames from 8 to 6 in the script preset + * Disable tskip in the script preset + * Add negative Chroma QP offsets for HDR content + +2025-06-04 - ffhevc 4.6.0 + * Delete side data when doing tone mapping to SDR + * Updated the AUTHORS, README and man page files + 2025-02-02 - ffhevc 4.5.19 * Turn on HME for the built-in script preset * Increased default noise value from 4 to 5
View file
ffhevc-4.5.19.tar.gz/README -> ffhevc-4.6.1.tar.gz/README
Changed
@@ -16,4 +16,4 @@ Donations: -PayPal address: neutrino8@gmail.com +PayPal address: microchip8@proton.me
View file
ffhevc-4.5.19.tar.gz/ffhevc -> ffhevc-4.6.1.tar.gz/ffhevc
Changed
@@ -1,9 +1,9 @@ #!/usr/bin/env bash # # Small script to encode to H.265/HEVC video using FFmpeg and libx265. -# Author: Grozdan "microchip" Nikolov <neutrino8@gmail.com> -# Version: 4.5.19 -# Date: 2025-02-02 +# Author: Grozdan "microchip" Nikolov <microchip8@proton.me> +# Version: 4.6.1 +# Date: 2025-06-28 # # 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,10 +24,10 @@ brown() { echo -e "\e0;33m$1\e0;39;49m"; } error() { echo -e "\e1;31m$1\e0;39;49m"; } -version="4.5.19" +version="4.6.1" CFG="$HOME/.ffhevc" -cfgversion="88" +cfgversion="89" genconfig_func() { cat<<EOF>>"$CFG" @@ -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:hme=1:hme-search=umh,umh,star:subme=5:bframes=8: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=2:rskip=2:rskip-edge-threshold=1:rc-lookahead=60:aq-mode=1:aq-strength=1.0:rdoq-level=1:psy-rd=4.0:psy-rdoq=15.0:limit-modes=0:limit-refs=1:limit-tu=0:deblock=-3,-3:weightb=1:weightp=1:rect=1:amp=0:wpp=1:b-intra=1:b-adapt=2:b-pyramid=1:tskip=1:tskip-fast=0:fast-intra=0:early-skip=0:splitrd-skip=0:refine-mv=3:refine-intra=1:refine-inter=1" +X265PARAMS="ref=4:hme=1:hme-search=umh,umh,star: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=2:rskip=2:rskip-edge-threshold=1:rc-lookahead=60:aq-mode=1:aq-strength=1.0:rdoq-level=1:psy-rd=4.0:psy-rdoq=15.0:limit-modes=0:limit-refs=1:limit-tu=0:deblock=-3,-3:weightb=1:weightp=1:rect=1:amp=0: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" # Leave empty to auto-detect ffmpeg/ffprobe/mplayer # or set your custom ones (eg, /path/to/bin/ffmpeg) @@ -1353,7 +1353,7 @@ test ! -z "$satval" && eq="eq=saturation=$satval," fi fi - test ! -z "$zscale" && tonemap="zscale=transfer=linear,tonemap=$tm_algo$tm_param$tm_desat,$zscale," + test ! -z "$zscale" && tonemap="zscale=transfer=linear,tonemap=$tm_algo$tm_param$tm_desat,$zscale,sidedata=delete," test ! -z "$colorspace" && colorspace="$colorspace$wpadapt," fi fi @@ -1732,7 +1732,7 @@ fi if ! -z "$master_display" -o ! -z "$max_cll" -o ! -z "$dhdr10" -o ! -z "$dolby_vision" -o ! -z "$dolby_vision_rpu" ; then - hdr_encopts=":open-gop=0:repeat-headers=1$hlg" + hdr_encopts=":open-gop=0:repeat-headers=1:cbqpoffs=-1:crqpoffs=-1$hlg" fi if ! -z "$batchmode" ; then @@ -1754,7 +1754,7 @@ echo " mast_disp=\"G(\${hdrsd0},\${hdrsd1})B(\${hdrsd2},\${hdrsd3})R(\${hdrsd4},\${hdrsd5})WP(\${hdrsd6},\${hdrsd7})L(\${hdrsd9},\${hdrsd8})\"" echo " max_cll=\":max-cll=\${hdrsd10},\${hdrsd11}\"" } - hdr_encopts=":hdr10-opt=1\$hdr_encopts$hlg" + hdr_encopts=":hdr10-opt=1\$hdr_encopts" master_display=":master-display=\"\$mast_disp\"" max_cll="\$max_cll" fi
View file
ffhevc-4.5.19.tar.gz/ffhevc.1 -> ffhevc-4.6.1.tar.gz/ffhevc.1
Changed
@@ -3,7 +3,7 @@ .de IPs .IP "\\$1" .. -.TH ffhevc 1 "Nov 25, 2024" +.TH ffhevc 1 "Jun 04, 2025" .SH NAME ffhevc @@ -122,10 +122,10 @@ .SH AUTHORS .B ffhevc -was written by Grozdan Nikolov <neutrino8@gmail.com> +was written by Grozdan Nikolov <microchip8@proton.me> .SH BUG REPORTS -Please send all bug reports and/or questions/suggestions/donations to <neutrino8@gmail.com> +Please send all bug reports and/or questions/suggestions/donations to <microchip8@proton.me> .SH WWW https://ffhevc.teambelgium.net
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
.