From cfb28f3d43f1f1874068f5f76baf18f66c796d22 Mon Sep 17 00:00:00 2001 From: mholmqvist Date: Fri, 6 Jan 2023 19:22:02 +0100 Subject: [PATCH] Update ffmpeg-fetch.sh Extended timeout on curl for ffmpeg download. --- ffmpeg-fetch.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ffmpeg-fetch.sh b/ffmpeg-fetch.sh index 3b1ac78..6a169bf 100644 --- a/ffmpeg-fetch.sh +++ b/ffmpeg-fetch.sh @@ -26,7 +26,7 @@ apt-get update && apt-get -y install curl xz-utils echo "(2/5) DOWNLOAD - Acquire latest ffmpeg and ffprobe from John van Sickle's master-sourced builds in ffmpeg obtain layer" curl -o ffmpeg.txz \ --connect-timeout 5 \ - --max-time 10 \ + --max-time 120 \ --retry 5 \ --retry-delay 0 \ --retry-max-time 40 \