Update FFmpeg links

This commit is contained in:
Jaex 2020-08-15 17:36:08 +03:00
parent 159861bc3a
commit ee2e7e9136

View file

@ -341,7 +341,7 @@ private static void CopyFFmpeg(string destination, bool include32bit, bool inclu
{
if (!File.Exists(FFmpeg32bit))
{
string filename = SetupHelpers.DownloadFile("https://ffmpeg.zeranoe.com/builds/win32/static/ffmpeg-4.2.2-win32-static.zip");
string filename = SetupHelpers.DownloadFile("https://ffmpeg.zeranoe.com/builds/win32/static/ffmpeg-4.3.1-win32-static.zip");
ZipManager.Extract(filename, ".", false, entry => entry.Name.Equals("ffmpeg.exe", StringComparison.OrdinalIgnoreCase), 1_000_000_000);
File.Move("ffmpeg.exe", FFmpeg32bit);
}
@ -353,7 +353,7 @@ private static void CopyFFmpeg(string destination, bool include32bit, bool inclu
{
if (!File.Exists(FFmpeg64bit))
{
string filename = SetupHelpers.DownloadFile("https://ffmpeg.zeranoe.com/builds/win64/static/ffmpeg-4.2.2-win64-static.zip");
string filename = SetupHelpers.DownloadFile("https://ffmpeg.zeranoe.com/builds/win64/static/ffmpeg-4.3.1-win64-static.zip");
ZipManager.Extract(filename, ".", false, entry => entry.Name.Equals("ffmpeg.exe", StringComparison.OrdinalIgnoreCase), 1_000_000_000);
File.Move("ffmpeg.exe", FFmpeg64bit);
}