From 0a0e6c498561fd9b5608f4e4c60169a7c14bb898 Mon Sep 17 00:00:00 2001 From: Malte Rosenbjerg Date: Fri, 17 Oct 2025 15:20:44 +0200 Subject: [PATCH 1/2] Update FFMpegCore.Test/Utilities/OsSpecificTestMethod.cs Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- FFMpegCore.Test/Utilities/OsSpecificTestMethod.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/FFMpegCore.Test/Utilities/OsSpecificTestMethod.cs b/FFMpegCore.Test/Utilities/OsSpecificTestMethod.cs index d03eb27..df7ebd5 100644 --- a/FFMpegCore.Test/Utilities/OsSpecificTestMethod.cs +++ b/FFMpegCore.Test/Utilities/OsSpecificTestMethod.cs @@ -7,9 +7,9 @@ namespace FFMpegCore.Test.Utilities; [Flags] internal enum OsPlatforms : ushort { - Windows, - Linux, - MacOS + Windows = 1, + Linux = 2, + MacOS = 4 } internal class OsSpecificTestMethod : TestMethodAttribute From 81bf155c382ae364dc840d3d83bfe2e1e61964e7 Mon Sep 17 00:00:00 2001 From: Malte Rosenbjerg Date: Fri, 17 Oct 2025 15:20:51 +0200 Subject: [PATCH 2/2] Update README.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 693d0e4..dcee337 100644 --- a/README.md +++ b/README.md @@ -187,7 +187,7 @@ If you want to use `System.Drawing.Bitmap`s as `IVideoFrame`s, a `BitmapVideoFra ## Runtime Auto Installation You can install a version of ffmpeg suite at runtime using `FFMpegDownloader.DownloadFFMpegSuite();` -This feature uses the api from [ffbinaries](https://ffbinaries.com/api). +This feature uses the api from [ffbinaries](https://ffbinaries.com/api). ## Manual Installation