Projects
Multimedia
ffhevc
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 235
View file
ffhevc.changes
Changed
@@ -1,4 +1,12 @@ ------------------------------------------------------------------- +Wed Aug 16 06:11:00 UTC 2023 - neutrino8@opensuse.org + +- Update to version 4.4.9 + * Ask for the Lanczos scaler width (alpha) + * Only ask to force HDR10 signaling in case Max CLL is not set + or user has provided 0,0 as value + +------------------------------------------------------------------- Sun May 07 07:04:00 UTC 2023 - neutrino8@opensuse.org - Update to version 4.4.8
View file
ffhevc.spec
Changed
@@ -1,7 +1,7 @@ # # spec file for package ffhevc # -# Copyright (c) 2021 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2023 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,7 +17,7 @@ Name: ffhevc -Version: 4.4.8 +Version: 4.4.9 Release: 1 Summary: A small shell script for encoding to H.265/HEVC with FFmpeg License: GPL-2.0+
View file
ffhevc-4.4.8.tar.gz/ChangeLog -> ffhevc-4.4.9.tar.gz/ChangeLog
Changed
@@ -1,3 +1,9 @@ +2023-08-16 - ffhevc 4.4.9 + * Ask for the Lanczos scaler width (alpha) + * Only ask to force HDR10 signaling in case + Max CLL is not set or user has provided 0,0 + as value + 2023-05-07 - ffhevc 4.4.8 * Update to the default encoding options * Increased default CRF value from 21 to 23
View file
ffhevc-4.4.8.tar.gz/ffhevc -> ffhevc-4.4.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: 4.4.8 -# Date: 2023-05-07 +# Version: 4.4.9 +# Date: 2023-08-16 # # 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.4.8" +version="4.4.9" CFG="$HOME/.ffhevc" cfgversion="82" @@ -1657,10 +1657,12 @@ printf "Specify the Content Light Level Info (max-cll) press 'Enter' to skip: " read clli test ! -z "$clli" && max_cll=":max-cll=$clli" - printf "Force signaling of HDR10 in case max-cll is 0,0? y/N: " - read fhdr - if "$fhdr" = "y" -o "$fhdr" = "Y" ; then - hdr10=":hdr10=1" + if -z "$clli" -o "$clli" = "0,0" ; then + printf "Force signaling of HDR10 in case max-cll is 0,0? y/N: " + read fhdr + if "$fhdr" = "y" -o "$fhdr" = "Y" ; then + hdr10=":hdr10=1" + fi fi printf "Flag the file as HLG (Hybrid Log Gamma)? y/N: " read fhlg @@ -1922,8 +1924,8 @@ else swscaler="Lanczos" swsval="1-10" - swsdef="1" - swstype="Filter Length" + swsdef="3" + swstype="Width (alpha)" fi printf "Specify the $swscaler scaler $swstype $swsval - default is $swsdef: " read swstune
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
.