Update ffmpeg to 2024-03-25

This commit is contained in:
Nikolaj Olsson 2024-03-28 09:35:53 +01:00
parent 2fd8ee3041
commit 08240a370e
2 changed files with 5 additions and 4 deletions

View File

@ -14,6 +14,7 @@
* Improve EBU STL preview regarding box - thx BlueMeow7
* Update libmpv to 2024-03-17
* Update yt-dlp to 2024-03-10
* Update ffmpeg to 2024-03-25
* FIXED:
* Fix for Whisper post-processing - thx Purfview/cvrle77
* Fix crash in "Fix common errors" - thx Joe

View File

@ -51,7 +51,7 @@ namespace Nikse.SubtitleEdit.Forms
private void DownloadFfmpeg_Shown(object sender, EventArgs e)
{
var url = "https://github.com/SubtitleEdit/support-files/releases/download/ffmpeg-v6-1/ffmpeg61.zip";
var url = "https://github.com/SubtitleEdit/support-files/releases/download/ffmpeg-2024-03-25/ffmpeg-2024-03-25-git-ecdc94b97f.zip";
if (IntPtr.Size == 32)
{
url = "https://github.com/SubtitleEdit/support-files/releases/download/ffmpegwin32v5.1/ffmpeg-win32-n5.1.zip";
@ -59,7 +59,7 @@ namespace Nikse.SubtitleEdit.Forms
if (_title.Contains("ffprobe", StringComparison.OrdinalIgnoreCase))
{
url = "https://github.com/SubtitleEdit/support-files/releases/download/ffmpeg-v6-1/ffprobe61.zip";
url = "https://github.com/SubtitleEdit/support-files/releases/download/ffmpeg-2024-03-25/ffprobe-2024-03-25-git-ecdc94b97f.zip";
}
try
@ -115,8 +115,8 @@ namespace Nikse.SubtitleEdit.Forms
var sha512Hashes = new[]
{
"08d1a88a6293ad9c66de2f11a029b648bafe7f2a0ebaca6bb863f11e7d80967f6804b8c2b86c2d8381a441857fd7fc52f2a9e95b340295e1b16ed124c6f776f3", // ffmpeg 6.1
"d2ee1d3bfa6cfb8c7563cfb8cd641962e7274149458630191a69b689e9c0288608885f51c39f578008e68856ee71bc66a82ed4b3cba2f1411aec2b4da991b974", // ffprobe 6.1
"71d31bdf7242d5a81899f2dbc7253a7b3b9ec59bbce86f9e3bc53bb8e5289ba22db0ae5e7372673a9aed2724c4942c7eec144e461b174cf18fc1836816402dbe", // ffmpeg-2024-03-25-git-ecdc94b97f
"c07de58f2006565d7864bea7f3f8e0648e3b0596b0bab94fb1d8ff5a18ea7626bacc8c5206049549c01cda5176350df311e469d6f1f2bf99d968d55817852d4d", // ffprobe-2024-03-25-git-ecdc94b97f
};
var hash = Utilities.GetSha512Hash(downloadStream.ToArray());
if (!sha512Hashes.Contains(hash))