From 7f5e62d03af19704f794e95ccb0f4b0e0d125334 Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Sun, 15 Jun 2025 16:01:23 +0500 Subject: [PATCH] scripts: gha: use full ffmpeg builds, as ours are not finalized yet --- scripts/gha/deps_linux.sh | 2 +- scripts/gha/deps_win32.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/gha/deps_linux.sh b/scripts/gha/deps_linux.sh index 75c3cb9f..5a246079 100755 --- a/scripts/gha/deps_linux.sh +++ b/scripts/gha/deps_linux.sh @@ -86,7 +86,7 @@ if [ -n "${APPIMAGETOOL[$GH_CPU_ARCH]}" ]; then fi FFMPEG_ARCHIVE=$(get_ffmpeg_archive) -wget https://github.com/FWGS/FFmpeg-Builds/releases/download/latest/$FFMPEG_ARCHIVE.tar.xz -qO- | tar -xJf - +wget https://github.com/BtbN/FFmpeg-Builds/releases/download/latest/$FFMPEG_ARCHIVE.tar.xz -qO- | tar -xJf - mv $FFMPEG_ARCHIVE ffmpeg wget "https://github.com/libsdl-org/SDL/releases/download/release-$SDL_VERSION/SDL2-$SDL_VERSION.tar.gz" -qO- | tar -xzf - diff --git a/scripts/gha/deps_win32.sh b/scripts/gha/deps_win32.sh index ae38c5d1..8909b7a4 100755 --- a/scripts/gha/deps_win32.sh +++ b/scripts/gha/deps_win32.sh @@ -17,7 +17,7 @@ rm pkgconf.tar* mv mingw64 pkgconf FFMPEG_ARCHIVE=$(get_ffmpeg_archive) -curl -L https://github.com/FWGS/FFmpeg-Builds/releases/download/latest/$FFMPEG_ARCHIVE.zip -o ffmpeg.zip +curl -L https://github.com/BtbN/FFmpeg-Builds/releases/download/latest/$FFMPEG_ARCHIVE.zip -o ffmpeg.zip if [ -f ffmpeg.zip ]; then unzip -x ffmpeg.zip mv $FFMPEG_ARCHIVE ffmpeg