You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 7, 2021. It is now read-only.
Log level in ffmpeg is defined by static int av_log_level field in libavutil/log.c file. This field is shared by all threads accessing libavxxx libraries. When there are multiple executions setting the log level, the value of this field is overwritten by the last execution started, which means the previous executions can not effectively specify a log level.
This behaviour does not cause any trouble when executing similar commands. It can be noticed when an ffmpeg command is executed at the same time with getMediaInformation method.
The text was updated successfully, but these errors were encountered:
Log level in
ffmpeg
is defined bystatic int av_log_level
field inlibavutil/log.c
file. This field is shared by all threads accessinglibavxxx
libraries. When there are multiple executions setting the log level, the value of this field is overwritten by the last execution started, which means the previous executions can not effectively specify a log level.This behaviour does not cause any trouble when executing similar commands. It can be noticed when an
ffmpeg
command is executed at the same time withgetMediaInformation
method.The text was updated successfully, but these errors were encountered: