You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
5 lines
394 B
PowerShell
5 lines
394 B
PowerShell
Invoke-WebRequest -Uri "https://github.com/aandrew-me/ffmpeg-builds/releases/download/v8/node.exe" -OutFile node.exe
|
|
Invoke-WebRequest -Uri "https://github.com/aandrew-me/ffmpeg-builds/releases/download/v8/ffmpeg_win64.zip" -OutFile ffmpeg_win64.zip
|
|
Expand-Archive -Path ffmpeg_win64.zip -DestinationPath .
|
|
Remove-Item -Path ffmpeg_win64.zip
|
|
Move-Item -Path .\ffmpeg_win64 -Destination .\ffmpeg |