1.视频流各种超时设置
ffmpeg的avformat_open_input()和av_read_frame默认是阻塞的
1.设置rtsp格式流的超时
AVDictionary* opts = NULL;
av_dict_set(&opts, "rtsp_transport", m_bTcp ? "tcp" : "udp", 0); //设置tcp or udp,默认一般优先tcp再尝试udp
av_dict_set(&opts, "stimeout", "3000000", 0);//单位us 也就是这里设置的是3s
ret = avformat_open_input(&ctx, url, NULL, &opts);
2.设置udp,http格式流超时
AVDictionary* opts = NULL;
av_dict_set(&opts, "timeout", "3000000", 0);//单位 如果是http:ms 如果是udp:s
int ret = avformat_open_input(&ctx, url, NULL, &opts);
读流超时设计av_read_frame
1.回调用的方式
- //打开成功后 设置回调,监控read超时情况 通过这种方式可以动态修改(一定是要打开 后再进行回调函数的设置,否则会一直接报avformat_open_input()函数执行不成功)
context->ifmt_ctx->interrupt_callback.opaque = context;回调函数的参数
context->ifmt_ctx->interrupt_callback.callback = interruptCallback;//设置回调函数
- //每次读流之前记录一下起始时间
context->read_start_time = time(NULL);
int ret = av_read_frame(context->ifmt_ctx, &pkt);
- //回调监控
static int interruptCallback(void *context){
AVFormatContext *ctx = (AVFormatContext *)context;//AVFormatContext ,这是回调opaque设置的
if (ctx == NULL) {
return 0;
}
ACCUInt64_t end = time(NULL);
if (end - ctx->read_start_time >= 3) {
return 1;
}
return 0;
}
2.参数设置
//不可动态设置,只能在开流之前设置好
AVDictionary* opts = NULL;
av_dict_set(&opts, "rw_timeout", "3000", 0);//单位:ms
int ret = avformat_open_input(&ctx, url, NULL, &opts);
2.视频流的格式
关键字:rtsp url 用户名 密码 user password
rtsp://[<username>[:<password>]@]<server-address-or-name>[:<port>][/<path>]"
如:rtsp://admin:1992wuweibiao@192.168.1.64:554/Streaming/Channels/101?transportmode=unicast&profile=Profile_1