bytedeco/javacv
View on GitHubCan't see ffmpeg AV_LOG_ERROR when FFmpegLogCallback.setLevel to AV_LOG_TRACE
Open
#1,955 opened on Dec 10, 2022
help wantedquestion
Repository metrics
- Stars
- (6,985 stars)
- PR merge metrics
- (No merged PRs in 30d)
Description
I want to see SRT error message somethings like below:
av_log(h, AV_LOG_ERROR, "%s\n", srt_getlasterror_str());
but when I use FFmpegLogCallback like this:
FFmpegLogCallback.setLevel(AV_LOG_TRACE);
FFmpegLogCallback.set();
I can't see any ERROR log,only some debug and info logs,I'm sure to trigger the error condition. thanks for help. @saudet