Projects
Multimedia
ffx264
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 170
View file
ffx264.changes
Changed
@@ -1,4 +1,13 @@ ------------------------------------------------------------------- +Mon Nov 18 13:25:00 UTC 2024 - neutrino8@gmail.com + +- Update to version 4.2.9 + * 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.2.8
View file
ffx264-4.2.8.tar.gz/ChangeLog -> ffx264-4.2.9.tar.gz/ChangeLog
Changed
@@ -1,3 +1,10 @@ +2024-11-18 - ffx264 4.2.9 + * 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 - ffx264 4.2.8 * Do colorspace conversion before scaling * Moved chroma location code after color primaries code
View file
ffx264-4.2.8.tar.gz/ffx264 -> ffx264-4.2.9.tar.gz/ffx264
Changed
@@ -2,8 +2,8 @@ # # Small script to encode to H.264/AVC video using FFmpeg and libx264. # Author: Grozdan "microchip" Nikolov <neutrino8@gmail.com> -# Version: 4.2.8 -# Date: 2024-11-11 +# Version: 4.2.9 +# Date: 2024-11-18 # # ffx264 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.2.8" +version="4.2.9" CFG="$HOME/.ffx264" cfgversion="43" @@ -3528,26 +3528,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
.