LogLevel class

Constructors

LogLevel()

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

AV_LOG_DEBUG → const int
Stuff which is only useful for libav* developers.
AV_LOG_ERROR → const int
Something went wrong and cannot losslessly be recovered. However, not all future data is affected.
AV_LOG_FATAL → 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.
AV_LOG_INFO → const int
int Standard information.
AV_LOG_PANIC → const int
Something went really wrong and we will crash now.
AV_LOG_QUIET → const int
Print no output.
AV_LOG_STDERR → const int
This log level is used to specify logs printed to stderr by ffmpeg. Logs that has this level are not filtered and always redirected.
AV_LOG_TRACE → const int
Extremely verbose debugging, useful for libav* development.
AV_LOG_VERBOSE → const int
Detailed information.
AV_LOG_WARNING → 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'.