From: Marcel van der Veldt Date: Thu, 23 Oct 2025 19:44:12 +0000 (+0200) Subject: Add more ffmpeg filters and codecs X-Git-Url: https://git.kitaultman.com/?a=commitdiff_plain;h=97914df445fafdb7bba8024c919839df5f514c22;p=music-assistant-server.git Add more ffmpeg filters and codecs --- diff --git a/Dockerfile.base b/Dockerfile.base index 14711bca..39fc1d75 100644 --- a/Dockerfile.base +++ b/Dockerfile.base @@ -32,7 +32,14 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ libopencore-amrnb-dev \ libopencore-amrwb-dev \ libshine-dev \ - # Additional audio processing + # Audio processing and filters + librubberband-dev \ + libbs2b-dev \ + libsamplerate0-dev \ + libmysofa-dev \ + libjack-jackd2-dev \ + libpulse-dev \ + # Additional libraries libbluray-dev \ libxml2-dev \ # SSL/TLS support for HTTPS @@ -63,6 +70,11 @@ RUN set -x \ --enable-libvo-amrwbenc \ # Audio filters and resampling --enable-libsoxr \ + --enable-librubberband \ + --enable-libbs2b \ + --enable-libmysofa \ + --enable-libjack \ + --enable-libpulse \ # SSL/TLS support for HTTPS --enable-openssl \ # Protocols needed for streaming @@ -129,6 +141,14 @@ RUN set -x \ libopencore-amrnb0 \ libopencore-amrwb0 \ libvo-amrwbenc0 \ + # Audio processing libraries + librubberband2 \ + libbs2b0 \ + libsamplerate0 \ + libmysofa1 \ + libjack-jackd2-0 \ + libpulse0 \ + # Additional libraries libbluray2 \ libxml2 \ && apt-get clean \