Skip to content

Commit 8a6cec3

Browse files
committed
fixed the version in the download script.
1 parent 48cacec commit 8a6cec3

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

ffmpeg/download.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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);
99
Expand-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);
1212
Expand-Archive $binZipPath -DestinationPath $tempPath -Force
1313

1414
Remove-Item -Path include -Force -Recurse -ErrorAction Ignore

ffmpeg/readme.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ The structure should be as follows:
88
For Windows, you can get the necessary files from:
99
https://www.ffmpeg.org/download.html
1010

11+
The library has last been tested with ffmpeg 4.1.4.
12+
1113
Download the dev version and extract it into this folder for the lib and include dirs.
1214
Download the shared version for the dlls and extract that one as well.
1315
Make sure that bin, lib and include are present.

0 commit comments

Comments
 (0)