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 5a6c3b9 commit 79a2027Copy full SHA for 79a2027
1 file changed
.github/workflows/test.yml
@@ -85,6 +85,10 @@ jobs:
85
if: matrix.os == 'windows-latest'
86
shell: powershell
87
run: |
88
+ if (Test-Path ffmpeg) {
89
+ Remove-Item -Recurse -Force ffmpeg
90
+ }
91
+
92
Invoke-WebRequest -Uri https://github.com/PHP-WebRTC/ffmpeg-builder/releases/download/v7.1.1/ffmpeg-win_amd64.tar.gz -OutFile ffmpeg.tar.gz
93
mkdir ffmpeg
94
tar -xzf ffmpeg.tar.gz -C ffmpeg
@@ -100,8 +104,6 @@ jobs:
100
104
} else {
101
105
Write-Host "ffmpeg.exe not found."
102
106
}
103
-
107
108
- name: Check PHP and FFI status
109
0 commit comments