From 7b158503e3abbbb52be3f6610832882f7ace07f1 Mon Sep 17 00:00:00 2001 From: Rokib Hasan Sagar <10854164+rokibhasansagar@users.noreply.github.com> Date: Sat, 24 Jul 2021 12:35:31 +0600 Subject: [PATCH 1/2] build-ffmpeg: cmake minor version update --- build-ffmpeg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-ffmpeg b/build-ffmpeg index 21751f26..62dfe8f8 100755 --- a/build-ffmpeg +++ b/build-ffmpeg @@ -402,7 +402,7 @@ if $NONFREE_AND_GPL; then fi if build "cmake"; then - download "https://cmake.org/files/LatestRelease/cmake-3.20.2.tar.gz" + download "https://cmake.org/files/LatestRelease/cmake-3.21.0.tar.gz" execute ./configure --prefix="${WORKSPACE}" --parallel="${MJOBS}" -- -DCMAKE_USE_OPENSSL=OFF execute make -j $MJOBS execute make install From fb3776bb2ffc21e1aeffa714741aa44246b9ea06 Mon Sep 17 00:00:00 2001 From: Rokib Hasan Sagar <10854164+rokibhasansagar@users.noreply.github.com> Date: Sat, 24 Jul 2021 13:18:57 +0600 Subject: [PATCH 2/2] Use git release head snapshot for ffmpeg source - Tagged snapshot from ffmpeg.org is not updated once published. But the release head branches in git source is occasionally updated with most-stable changes from master branch. --- build-ffmpeg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-ffmpeg b/build-ffmpeg index 62dfe8f8..483a716f 100755 --- a/build-ffmpeg +++ b/build-ffmpeg @@ -699,7 +699,7 @@ fi ## build "ffmpeg" -download "https://www.ffmpeg.org/releases/ffmpeg-4.4.tar.gz" +download "https://github.com/FFmpeg/FFmpeg/archive/refs/heads/release/4.4.tar.gz" "FFmpeg-release-4.4.tar.gz" # shellcheck disable=SC2086 ./configure "${CONFIGURE_OPTIONS[@]}" \ --disable-debug \