File tree Expand file tree Collapse file tree 1 file changed +11
-8
lines changed
Expand file tree Collapse file tree 1 file changed +11
-8
lines changed Original file line number Diff line number Diff line change @@ -168,14 +168,17 @@ EOT
168168WORKDIR /tmp/ffmpeg_source
169169
170170RUN <<EOT
171- FFMPEG_TARBALL="$( \
172- curl -s -L -k --connect-timeout 5 --retry 3 \
173- " https://ffmpeg.org/releases/" \
174- | grep -oE 'ffmpeg-[0-9]+.*.tar.xz' \
175- | sed 's|\. tar.xz.*||' \
176- | sort -V \
177- | tail -n 1 \
178- ).tar.xz"
171+ # Get newest version of FFmpeg.
172+ # FFMPEG_TARBALL="$( \
173+ # curl -s -L -k --connect-timeout 5 --retry 3 \
174+ # "https://ffmpeg.org/releases/" \
175+ # | grep -oE 'ffmpeg-[0-9]+.*.tar.xz' \
176+ # | sed 's|\.tar.xz.*||' \
177+ # | sort -V \
178+ # | tail -n 1 \
179+ # ).tar.xz"
180+
181+ FFMPEG_TARBALL="ffmpeg-7.1.tar.xz"
179182
180183 curl -L -k --connect-timeout 5 --retry 3 \
181184 "https://ffmpeg.org/releases/${FFMPEG_TARBALL}" \
You can’t perform that action at this time.
0 commit comments