From 2f524a60869f7dc3ec117811dbc6acf4588c25cb Mon Sep 17 00:00:00 2001 From: X_Tu <1206294056@qq.com> Date: Sat, 15 Jun 2024 07:35:47 +0800 Subject: [PATCH] fix: change the ffmpeg source url from http to https --- build-ffmpeg.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-ffmpeg.sh b/build-ffmpeg.sh index 319fadbe..3bdc6d19 100755 --- a/build-ffmpeg.sh +++ b/build-ffmpeg.sh @@ -83,7 +83,7 @@ then if [ ! -r $SOURCE ] then echo 'FFmpeg source not found. Trying to download...' - curl http://www.ffmpeg.org/releases/$SOURCE.tar.bz2 | tar xj \ + curl https://www.ffmpeg.org/releases/$SOURCE.tar.bz2 | tar xj \ || exit 1 fi