Projects
Multimedia
ffxvid
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 110
View file
ffxvid.changes
Changed
@@ -1,4 +1,13 @@ ------------------------------------------------------------------- +Mon Nov 18 13:25:00 UTC 2024 - neutrino8@gmail.com + +- Update to version 1.8.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 1.8.8
View file
ffxvid.spec
Changed
@@ -17,7 +17,7 @@ Name: ffxvid -Version: 1.8.8 +Version: 1.8.9 Release: %mkrel 1 Summary: A small shell script for encoding to Xvid with FFmpeg License: GPL-2.0+
View file
ffxvid-1.8.8.tar.gz/ChangeLog -> ffxvid-1.8.9.tar.gz/ChangeLog
Changed
@@ -1,3 +1,10 @@ +2024-11-18 - ffxvid 1.8.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 - ffxvid 1.8.8 * Do colorspace conversion before scaling
View file
ffxvid-1.8.8.tar.gz/ffxvid -> ffxvid-1.8.9.tar.gz/ffxvid
Changed
@@ -2,8 +2,8 @@ # # Small script to encode to Xvid video using FFmpeg. # Author: Grozdan "microchip" Nikolov <neutrino8@gmail.com> -# Version: 1.8.8 -# Date: 2024-11-11 +# Version: 1.8.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="1.8.8" +version="1.8.9" CFG="$HOME/.ffxvid" cfgversion="15" @@ -3260,26 +3260,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
.