Projects
Multimedia
ffxvid
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 118
View file
ffxvid.changes
Changed
@@ -1,4 +1,11 @@ ------------------------------------------------------------------- +Wed May 27 07:02:00 UTC 2026 - microchip8@proton.me + +- Update to version 1.9.1 + * Add support for encoding 7.1 channels E-AC-3 audio. + Requires latest FFmpeg from git + +------------------------------------------------------------------- Tue Mar 03 07:15:00 UTC 2026 - microchip8@proton.me - Update to version 1.9.0
View file
ffxvid.spec
Changed
@@ -17,7 +17,7 @@ Name: ffxvid -Version: 1.9.0 +Version: 1.9.1 Release: %mkrel 1 Summary: A small shell script for encoding to Xvid with FFmpeg License: GPL-2.0+
View file
ffxvid-1.9.0.tar.gz/ChangeLog -> ffxvid-1.9.1.tar.gz/ChangeLog
Changed
@@ -1,3 +1,7 @@ +2026-05-27 - ffxvid 1.9.1 + * Add support for encoding 7.1 channels E-AC-3 audio. + Requires latest FFmpeg from git + 2026-03-03 - ffxvid 1.9.0 * Set Spline64 as default zimg scaler * Remove dependency on MPlayer and use ffplay instead
View file
ffxvid-1.9.0.tar.gz/ffxvid -> ffxvid-1.9.1.tar.gz/ffxvid
Changed
@@ -4,8 +4,8 @@ # to Xvid/MPEG-4 Part 2 video using FFmpeg and libxvid. # # Author: Grozdan "microchip" Nikolov <microchip8@proton.me> -# Version: 1.9.0 -# Date: 2026-03-03 +# Version: 1.9.1 +# Date: 2026-05-27 # # ffx264 is free software ; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -26,7 +26,7 @@ brown() { echo -e "\e0;33m$1\e0;39;49m"; } error() { echo -e "\e1;31m$1\e0;39;49m"; } -version="1.9.0" +version="1.9.1" CFG="$HOME/.ffxvid" cfgversion="19" @@ -2349,7 +2349,7 @@ brown " Available Audio Codecs" brown " ~~~~~~~~~~~~~~~~~~~~~~" echo " AC3 -----> Channels Support: 6" - echo " EAC3 ----> Channels Support: 6" + echo " EAC3 ----> Channels Support: 8" echo " DTS -----> Channels Support: 6" echo " AAC -----> Channels Support: 8" echo " FDK-AAC -> Channels Support: 8" @@ -2640,8 +2640,8 @@ esac case "${acodeci}" in - ac3|eac3) chanrangei="1-6"; defchani="6" ;; - aac|libopus|vorbis|flac|alac|pcm) chanrangei="1-8"; defchani="8" ;; + ac3) chanrangei="1-6"; defchani="6" ;; + eac3|aac|libopus|vorbis|flac|alac|pcm) chanrangei="1-8"; defchani="8" ;; mp3|opus|wmav1|wmav2) chanrangei="1-2"; defchani="2" ;; truehd) chanrangei="2/5/6"; defchani="6" ;; dts) chanrangei="1/2/4/5/6"; defchani="6" ;; @@ -2663,14 +2663,24 @@ esac case "${acodeci}" in ac3|eac3) - case "${achi}" in - 1-6) true ;; - *) - case "${acodeci}" in - ac3) error "-> AC-3 supports only 1-6 channels!" ;; - eac3) error "-> E-AC-3 encoder in ffmpeg supports only 1-6 channels!" ;; + case "${acodeci}" in + ac3) + case "${achi}" in + 1-6) true ;; + *) + error "-> AC-3 supports only 1-6 channels!" + exit 1 + ;; + esac + ;; + eac3) + case "${achi}" in + 1-8) true ;; + *) + error "-> E-AC-3 encoder in ffmpeg supports only 1-8 channels!" + exit 1 + ;; esac - exit 1 ;; esac ;; @@ -2749,7 +2759,14 @@ brown " ~~~~~~~~~~~~~~~~~~~~~" case "${acodeci}" in ac3|eac3) - echo " 0 -> Mono 4 -> Quad 8 --> 5.0" + case "${acodeci}" in + ac3) + echo " 0 -> Mono 4 -> Quad 8 --> 5.0" + ;; + eac3) + echo " 0 -> Mono 4 -> Quad 8 --> 5.0 12 -> 7.1" + ;; + esac echo " 1 -> Stereo 5 -> Quad(side) 9 --> 5.0(side)" echo " 2 -> 3.0 6 -> 4.0 10 -> 5.1" echo " 3 -> 3.0(back) 7 -> 4.1 11 -> 5.1(side)" @@ -2769,6 +2786,7 @@ 9) achlayouti="5.0(side)"; achmetai=" 5.0(side)" ;; 10) achlayouti="5.1"; achmetai=" 5.1" ;; 11|"") achlayouti="5.1(side)"; achmetai=" 5.1(side)" ;; + 12) achlayouti="7.1"; achmetai=" 7.1" ;; *) error "-> Invalid option!" exit 1
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
.