Skip to content

Commit

Permalink
Fix static ffmpeg URL
Browse files Browse the repository at this point in the history
Latest ffmpeg URL contains version 6.0 of static ffmpeg build. We keep
supporting LTS releases fro time being.
  • Loading branch information
jurisevo committed May 5, 2023
1 parent abd8a4b commit 360f68b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
- if: steps.cache-ffmpeg.outputs.cache-hit != 'true'
name: Install static ffmpeg
run: |
curl --connect-timeout 10 -Lv -o ffmpeg.tar.xz https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-amd64-static.tar.xz
curl --connect-timeout 10 -Lv -o ffmpeg.tar.xz https://www.johnvansickle.com/ffmpeg/old-releases/ffmpeg-5.1.1-arm64-static.tar.xz
echo "4cbbe32169c4ec79a0969d5c92cbcaff ffmpeg.tar.xz" | md5sum --check -
mkdir -p "$FFMPEG_DEST_DIR"
tar -C "$FFMPEG_DEST_DIR" -xf ffmpeg.tar.xz --strip-components=1
Expand Down

0 comments on commit 360f68b

Please sign in to comment.