问题描述
因此,我创建简单的应用程序康寿:FFmpeg的RTSP流视频读卡器(仅使用一般的FFmpeg的C API),但同时从ffmpeg的RTSP读取它显示了大量的信息。我没有问如果......至少不是全部......所以,我怎么能过滤什么的ffmpeg被允许输出?我所指的是所有他talls用户开发只存在一个重要的一行是这样的:在acsess单位缺少图片
因此,如何把一些过滤机制ffmpeg的不输出所有的IT希望和我开发商赶时刻信息我想出现之后? (在我的项目,我使用Boost库C ++编写下视觉工作室)
So I created simple Consol app: FFmpeg RTSP Video stream reader (using only general FFmpeg C API) But while ffmpeg reads from RTSP it shows lots of info. I did not asked for if... At least not all of it... So how can I filter what ffmpeg is outputing? I mean in all he talls user-developer there is only one important line something like: missing picture in acsess unit
so how to put some filter mechanism for ffmpeg not to output all it wants and for me developer to catch the moment when message I want appeares? (In my project I write in C++ under visual studio using Boost libs)
推荐答案
使用av_log_set_callback,设置你的函数回调:
Use av_log_set_callback, to set your function as callback:
static void avlog_cb(void *, int level, const char * szFmt, va_list varg) {
//do nothing...
}
av_log_set_callback(avlog_cb);
或者,你也可以使用
or, you may also use
av_log_set_level(AV_LOG_ERROR);
打印错误消息只。
to print error messages only.
这篇关于FFmpeg的:如何控制控制台输出,而从RTSP读书吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!