mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-04-20 06:20:11 +00:00
fix: use apt-get for ffmpeg install (johnvansickle.com unreliable)
Amp-Thread-ID: https://ampcode.com/threads/T-019d519b-004f-71ce-b970-96edd971fbe0 Co-authored-by: Amp <amp@ampcode.com>
This commit is contained in:
7
.github/workflows/pr-qa.yaml
vendored
7
.github/workflows/pr-qa.yaml
vendored
@@ -742,14 +742,9 @@ jobs:
|
||||
if command -v ffmpeg &>/dev/null; then
|
||||
echo "ffmpeg already installed"
|
||||
else
|
||||
echo "Downloading static ffmpeg..."
|
||||
TMP=$(mktemp -d)
|
||||
curl -sL "https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-amd64-static.tar.xz" | tar xJ -C "$TMP"
|
||||
sudo cp "$TMP"/ffmpeg-*/ffmpeg "$TMP"/ffmpeg-*/ffprobe /usr/local/bin/
|
||||
rm -rf "$TMP"
|
||||
sudo apt-get update -qq && sudo apt-get install -y -qq ffmpeg
|
||||
fi
|
||||
ffmpeg -version | head -1
|
||||
ffprobe -version | head -1
|
||||
|
||||
- name: Convert videos to mp4
|
||||
run: |
|
||||
|
||||
Reference in New Issue
Block a user