Projects
Multimedia
ffhevc
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 252
View file
ffhevc.changes
Changed
@@ -1,4 +1,13 @@ ------------------------------------------------------------------- +Mon Nov 18 13:25:00 UTC 2024 - neutrino8@gmail.com + +- Update to version 4.5.10 + * Fixed a bug in the audio metadata when copying + the Dolby core audio that added "+ Atmos" to the + metadata + * One-line micro-optimization in the Dolby metadata code + +------------------------------------------------------------------- Mon Nov 11 11:45:00 UTC 2024 - neutrino8@gmail.com - Update to version 4.5.9
View file
ffhevc-4.5.9.tar.gz/ChangeLog -> ffhevc-4.5.10.tar.gz/ChangeLog
Changed
@@ -1,3 +1,10 @@ +2024-11-18 - ffhevc 4.5.10 + * Fixed a bug in the audio metadata when copying + the Dolby core audio that added "+ Atmos" to the + metadata + * One-line micro-optimization in the Dolby metadata + code + 2024-11-11 - ffhevc 4.5.9 * Do colorspace conversion before scaling * Moved chroma location code after color primaries code
View file
ffhevc-4.5.9.tar.gz/ffhevc -> ffhevc-4.5.10.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@gmail.com> -# Version: 4.5.9 -# Date: 2024-11-11 +# Version: 4.5.10 +# Date: 2024-11-18 # # 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.5.9" +version="4.5.10" CFG="$HOME/.ffhevc" cfgversion="83" @@ -3605,26 +3605,28 @@ case "${GETAUDPROFi}" in "Dolby Digital Plus + Dolby Atmos"|"Dolby TrueHD + Dolby Atmos") if ! -z "$(echo "${GETAUDPROFi}" | grep 'Digital')" ; then - GETAUDCDCi="E-AC-3 + Atmos" audcorecdci="eac3_core" - audcdcnamei="AC-3" + audcdcnamei="(E-)AC-3" + audcdcmetai="E-AC-3 + Atmos" else - GETAUDCDCi="TrueHD + Atmos" audcorecdci="truehd_core" audcdcnamei="TrueHD" + audcdcmetai="TrueHD + Atmos" fi printf "Track $i: Copy Full or just the ${audcdcnamei} Core? full/core - default is full: " read acorecopyi case "${acorecopyi}" in - c*|C*) audcorei="-bsf:a:${audindexi} ${audcorecdci}" ;; + c*|C*) + GETAUDCDCi="${audcdcnamei}" + audcorei="-bsf:a:${audindexi} ${audcorecdci}" + ;; + *) + GETAUDCDCi="${audcdcmetai}" + ;; esac ;; *) - if "${GETAUDCDCi}" = "eac3" ; then - GETAUDCDCi="E-AC-3" - else - GETAUDCDCi="TrueHD" - fi + test "${GETAUDCDCi}" = "eac3" && GETAUDCDCi="E-AC-3" || GETAUDCDCi="TrueHD" ;; esac ;;
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
.