diff --git a/ShareX.Setup/Program.cs b/ShareX.Setup/Program.cs index 3d78ef6d6..cc0663eea 100644 --- a/ShareX.Setup/Program.cs +++ b/ShareX.Setup/Program.cs @@ -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); }