vlc.LogCb
- class vlc.LogCb
Bases:
ctypes.c_void_pCallback prototype for LibVLC log message handler.
Note
Log message handlers must be thread-safe.
Warning
The message context pointer, the format string parameters and the variable arguments are only valid until the callback returns.
- Parameters:
data – data pointer as given to
libvlc_log_set().level – message level (libvlc_log_level).
ctx – message context (meta-information about the message).
fmt – printf() format string (as defined by ISO C11).
args – variable argument list for the format.
Initialize self. See help(type(self)) for accurate signature.