From de873188a3d1cdc0ae954c44f365670e4177b46f Mon Sep 17 00:00:00 2001 From: RealStickman Date: Tue, 27 Dec 2022 17:01:56 +0100 Subject: [PATCH] Update default ffmpeg to jellyfin 5.1.2-5 --- debian-bullseye.dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/debian-bullseye.dockerfile b/debian-bullseye.dockerfile index d913893..5663011 100644 --- a/debian-bullseye.dockerfile +++ b/debian-bullseye.dockerfile @@ -2,6 +2,7 @@ FROM docker.io/lsiobase/ubuntu:focal ARG VERSION="2.00.19" ARG MODULE="Tdarr_Server" +ARG JELLYFIN_VERSION="5.1.2-5" ENV \ LIBVA_DRIVERS_PATH="/usr/lib/x86_64-linux-gnu/dri" \ @@ -32,9 +33,9 @@ RUN apt-get update && \ if uname -m | grep -q x86; then \ # FFmpeg apt install -y wget && \ - wget https://repo.jellyfin.org/releases/server/ubuntu/versions/jellyfin-ffmpeg/5.1.2-4/jellyfin-ffmpeg5_5.1.2-4-focal_amd64.deb && \ + wget https://repo.jellyfin.org/releases/server/ubuntu/versions/jellyfin-ffmpeg/${JELLYFIN_VERSION}/jellyfin-ffmpeg5_${JELLYFIN_VERSION}-focal_amd64.deb && \ apt install -y \ - ./jellyfin-ffmpeg5_5.1.2-4-focal_amd64.deb && \ + ./jellyfin-ffmpeg5_${JELLYFIN_VERSION}-focal_amd64.deb && \ ln -s /usr/lib/jellyfin-ffmpeg/ffmpeg /usr/local/bin/ffmpeg && \ ln -s /usr/lib/jellyfin-ffmpeg/ffmpeg /usr/local/bin/tdarr-ffmpeg && \