We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39dbf05 commit 69b4805Copy full SHA for 69b4805
.github/actions/setup-ffmpeg/action.yml
@@ -31,7 +31,9 @@ runs:
31
curl -L "https://www.osxexperts.net/ffmpeg${FF_VERSION}arm.zip" -o ffmpeg.zip
32
unzip -q ffmpeg.zip
33
mv ffmpeg "$INSTALL_DIR/ffmpeg"
34
- cp "$INSTALL_DIR/ffmpeg" "$INSTALL_DIR/ffprobe"
+ curl -L "https://www.osxexperts.net/ffprobe${FF_VERSION}arm.zip" -o ffprobe.zip
35
+ unzip -q ffprobe.zip
36
+ mv ffprobe "$INSTALL_DIR/ffprobe"
37
chmod +x "$INSTALL_DIR/"*
38
39
elif [[ "${{ runner.os }}" == "Windows" ]]; then
0 commit comments