mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2025-02-18 11:02:31 +00:00
15 lines
250 B
C#
15 lines
250 B
C#
namespace FFMpegCore.Enums
|
|
{
|
|
public enum FFMpegLogLevel
|
|
{
|
|
Quiet = 0,
|
|
Panic = 1,
|
|
Fatal = 2,
|
|
Error = 3,
|
|
Warning = 4,
|
|
Info = 5,
|
|
Verbose = 6,
|
|
Debug = 7,
|
|
Trace = 8
|
|
}
|
|
}
|