Skip to content

Commit 69b4805

Browse files
committed
fix ffprobe installation on mac arm
1 parent 39dbf05 commit 69b4805

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/actions/setup-ffmpeg/action.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@ runs:
3131
curl -L "https://www.osxexperts.net/ffmpeg${FF_VERSION}arm.zip" -o ffmpeg.zip
3232
unzip -q ffmpeg.zip
3333
mv ffmpeg "$INSTALL_DIR/ffmpeg"
34-
cp "$INSTALL_DIR/ffmpeg" "$INSTALL_DIR/ffprobe"
34+
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"
3537
chmod +x "$INSTALL_DIR/"*
3638
3739
elif [[ "${{ runner.os }}" == "Windows" ]]; then

0 commit comments

Comments
 (0)