From: Markham Date: Sun, 5 Apr 2026 12:21:58 +0000 (+0200) Subject: ffmpeg6: add switches to handle ac3 5.1 X-Git-Url: https://git.webhop.me/?a=commitdiff_plain;h=5d70caa3c3ad3e9a516212666cf91afacad4fe62;p=bs-cst-neutrino-hd.git ffmpeg6: add switches to handle ac3 5.1 --- diff --git a/make/ffmpeg6.mk b/make/ffmpeg6.mk index a79a20e..ac8248c 100644 --- a/make/ffmpeg6.mk +++ b/make/ffmpeg6.mk @@ -80,6 +80,8 @@ FFMPEG_CONFIGURE = \ \ --disable-static \ --disable-filters \ + --enable-filter=aresample \ + --enable-filter=volume \ \ --enable-librtmp \ --disable-protocol=data \ @@ -441,7 +443,22 @@ FFMPEG_CONFIGURE = \ --enable-pthreads \ --enable-small \ --enable-swresample \ - --enable-hardcoded-tables \ + --enable-hardcoded-tables + +# needed for ac3 5.1 +FFMPEG_CONFIGURE += \ + --enable-encoder=ac3 \ + --enable-encoder=ac3_fixed \ + \ + --enable-filter=amix \ + --enable-filter=aresample \ + --enable-filter=bass \ + --enable-filter=channelmap \ + --enable-filter=loudnorm \ + --enable-filter=pan \ + --enable-filter=surround \ + --enable-filter=treble \ + --enable-filter=volume $(FFMPEG_OPTIONS) endif