mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2025-12-14 01:55:45 +00:00
9 lines
150 B
C#
9 lines
150 B
C#
namespace FFMpegCore.Extensions.Downloader.Enums;
|
|
|
|
[Flags]
|
|
public enum FFMpegBinaries : ushort
|
|
{
|
|
FFMpeg = 1,
|
|
FFProbe = 2,
|
|
FFPlay = 4
|
|
}
|