前言
无论是ffmpeg.exe还是libffmpeg等,均有可有效优化延迟的参数,现在列出部分实际工作中使用的记录。
操作记录
libffmpeg
AVDictionary
*options
= NULL;
av_dict_set(&options
, "fflags", "nobuffer", 0);
if (avformat_open_input(&m_pFormatContext
, filename
, NULL, &options
) != 0)
{
log_print(LOG_ERR
, "avformat_open_input failed, %s\r\n", filename
);
return FALSE
;
}
m_pFormatContext
->probesize
= 100 * 1024;
m_pFormatContext
->max_analyze_duration
= 5*AV_TIME_BASE
;
avformat_find_stream_info(m_pFormatContext
, NULL);
技术交流
GB28181、35114、安防、WebRTC、互联网直播交流Q群:1033175645