File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -5,10 +5,10 @@ New-Item -ItemType Directory -Path $tempPath -Force | Out-Null
55$devZipPath = Join-Path - Path $tempPath - ChildPath " ffmpeg.dev.zip"
66$binZipPath = Join-Path - Path $tempPath - ChildPath " ffmpeg.bin.zip"
77
8- (new-object System.Net.WebClient).DownloadFile(' https://ffmpeg.zeranoe.com/builds/win64/dev/ffmpeg-20190320-0739d5c -win64-dev.zip' , $devZipPath );
8+ (new-object System.Net.WebClient).DownloadFile(' https://ffmpeg.zeranoe.com/builds/win64/dev/ffmpeg-20190716-806ac7d -win64-dev.zip' , $devZipPath );
99Expand-Archive $devZipPath - DestinationPath $tempPath - Force
1010
11- (new-object System.Net.WebClient).DownloadFile(' https://ffmpeg.zeranoe.com/builds/win64/shared/ffmpeg-20190320-0739d5c -win64-shared.zip' , $binZipPath );
11+ (new-object System.Net.WebClient).DownloadFile(' https://ffmpeg.zeranoe.com/builds/win64/shared/ffmpeg-20190716-806ac7d -win64-shared.zip' , $binZipPath );
1212Expand-Archive $binZipPath - DestinationPath $tempPath - Force
1313
1414Remove-Item - Path include - Force - Recurse - ErrorAction Ignore
Original file line number Diff line number Diff line change @@ -8,6 +8,8 @@ The structure should be as follows:
88For Windows, you can get the necessary files from:
99https://www.ffmpeg.org/download.html
1010
11+ The library has last been tested with ffmpeg 4.1.4.
12+
1113Download the dev version and extract it into this folder for the lib and include dirs.
1214Download the shared version for the dlls and extract that one as well.
1315Make sure that bin, lib and include are present.
You can’t perform that action at this time.
0 commit comments