Level class

Defines log levels.

Constructors

Level()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

levelToString(int level) String
Returns log level string from int

Constants

avLogDebug → const int
Stuff which is only useful for libav* developers.
avLogError → const int
Something went wrong and cannot losslessly be recovered. However, not all future data is affected.
avLogFatal → const int
Something went wrong and recovery is not possible. For example, no header was found for a format which depends on headers or an illegal combination of parameters is used.
avLogInfo → const int
int Standard information.
avLogPanic → const int
Something went really wrong and we will crash now.
avLogQuiet → const int
Print no output.
avLogStderr → const int
This log level is defined by FFmpegKit. It is used to specify logs printed to stderr by FFmpeg. Logs that has this level are not filtered and always redirected.
avLogTrace → const int
Extremely verbose debugging, useful for libav* development.
avLogVerbose → const int
Detailed information.
avLogWarning → const int
Something somehow does not look correct. This may or may not lead to problems. An example would be the use of '-vstrict -2'.