Projects
Multimedia
ffhevc
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 288
View file
ffhevc.changes
Changed
@@ -1,4 +1,10 @@ ------------------------------------------------------------------- +Thu May 14 16:25:00 UTC 2026 - microchip8@proton.me + +- Update to version 4.7.2 + * Fix a small issue in the AC-3/E-AC-3 channel checking code + +------------------------------------------------------------------- Wed May 13 09:03:00 UTC 2026 - microchip8@proton.me - Update to version 4.7.1
View file
ffhevc.spec
Changed
@@ -17,7 +17,7 @@ Name: ffhevc -Version: 4.7.1 +Version: 4.7.2 Release: %mkrel 1 Summary: A small shell script for encoding to H.265/HEVC with FFmpeg License: GPL-2.0+
View file
ffhevc-4.7.1.tar.gz/ChangeLog -> ffhevc-4.7.2.tar.gz/ChangeLog
Changed
@@ -1,3 +1,6 @@ +2026-05-14 - ffhevc 4.7.2 + * Fix a small issue in the AC-3/E-AC-3 channel checking code + 2026-05-13 - ffhevc 4.7.1 * Add support for E-AC-3 7.1 encoding. Requires latest FFmpeg from git
View file
ffhevc-4.7.1.tar.gz/ffhevc -> ffhevc-4.7.2.tar.gz/ffhevc
Changed
@@ -4,8 +4,8 @@ # encoding to H.265/HEVC video using FFmpeg and libx265. # # Author: Grozdan "microchip" Nikolov <microchip8@proton.me> -# Version: 4.7.1 -# Date: 2026-05-13 +# Version: 4.7.2 +# Date: 2026-05-14 # # ffhevc 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="4.7.1" +version="4.7.2" CFG="$HOME/.ffhevc" cfgversion="103" @@ -3108,24 +3108,25 @@ ;; esac case "${acodeci}" in - ac3) - 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!" ;; + ac3|eac3) + case "${acodeci}" in + ac3) + case "${achi}" in + 1-6) true ;; + *) + error "-> AC-3 supports only 1-6 channels!" + exit 1 + ;; esac - exit 1 ;; - esac - ;; - eac3) - case "${achi}" in - 1-8) true ;; - *) - error "-> E-AC-3 encoder in ffmpeg supports only 1-8 channels!" - exit 1 + eac3) + case "${achi}" in + 1-8) true ;; + *) + error "-> E-AC-3 encoder in ffmpeg supports only 1-8 channels!" + exit 1 + ;; + esac ;; 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
.