From 5f4c439f572eef155efcf838268c03468dbcc99a Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Sun, 8 Jan 2023 08:23:58 -0700 Subject: [PATCH] Fix btbn pulling wrong build (#4961) --- docker/install_deps.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docker/install_deps.sh b/docker/install_deps.sh index e4a40f65e..6805abe4e 100755 --- a/docker/install_deps.sh +++ b/docker/install_deps.sh @@ -29,9 +29,8 @@ apt-get -qq install --no-install-recommends --no-install-suggests -y \ # btbn-ffmpeg -> amd64 if [[ "${TARGETARCH}" == "amd64" ]]; then - btbn_arch="arm64" mkdir -p /usr/lib/btbn-ffmpeg - wget -qO btbn-ffmpeg.tar.xz "https://github.com/BtbN/FFmpeg-Builds/releases/download/autobuild-2022-07-31-12-37/ffmpeg-n5.1-2-g915ef932a3-linux${btbn_arch}-gpl-5.1.tar.xz" + wget -qO btbn-ffmpeg.tar.xz "https://github.com/BtbN/FFmpeg-Builds/releases/download/autobuild-2022-07-31-12-37/ffmpeg-n5.1-2-g915ef932a3-linux64-gpl-5.1.tar.xz" tar -xf btbn-ffmpeg.tar.xz -C /usr/lib/btbn-ffmpeg --strip-components 1 rm -rf btbn-ffmpeg.tar.xz /usr/lib/btbn-ffmpeg/doc /usr/lib/btbn-ffmpeg/bin/ffplay fi