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 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