mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2025-12-14 01:55:45 +00:00
Merge branch 'main' of https://github.com/yuqian5/FFMpegCore into pr/442
This commit is contained in:
commit
bbdbe5592a
2 changed files with 4 additions and 4 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue