File tree Expand file tree Collapse file tree 1 file changed +13
-9
lines changed
Expand file tree Collapse file tree 1 file changed +13
-9
lines changed Original file line number Diff line number Diff line change @@ -171,15 +171,19 @@ EOT
171171WORKDIR /ffmpeg_source
172172
173173RUN <<EOT
174- # Get newest version tarball of FFmpeg.
175- FFMPEG_TARBALL="$( \
176- curl -s -L -k --connect-timeout 5 --retry 3 \
177- " https://ffmpeg.org/releases/" \
178- | grep -oE 'ffmpeg-[0-9]+.*.tar.xz' \
179- | sed 's|\. tar.xz.*||' \
180- | sort -V \
181- | tail -n 1 \
182- ).tar.xz"
174+ # # Get newest version tarball of FFmpeg.
175+ # FFMPEG_TARBALL="$( \
176+ # curl -s -L -k --connect-timeout 5 --retry 3 \
177+ # "https://ffmpeg.org/releases/" \
178+ # | grep -oE 'ffmpeg-[0-9]+.*.tar.xz' \
179+ # | sed 's|\.tar.xz.*||' \
180+ # | sort -V \
181+ # | tail -n 1 \
182+ # ).tar.xz"
183+
184+ # Temporarily lock FFmpeg at 7.1.1
185+ # lock until upstream fixes "ld: libavformat/libavformat.so: undefined reference to `ff_udp_set_remote_addr/ff_udp_get_last_recv_addr'" issue.
186+ FFMPEG_TARBALL="ffmpeg-7.1.1.tar.xz"
183187
184188 curl -L -k --connect-timeout 5 --retry 3 \
185189 "https://ffmpeg.org/releases/${FFMPEG_TARBALL}" \
You can’t perform that action at this time.
0 commit comments