我尝试从使用RTSP over HTTP的Axis ip camera进行流式传输。 我可以使普通的RTSP流工作,但我找不到有关如何为流实际设置隧道模式的任何信息或文档。通过将control_transport设置为RTSP_MODE_TUNNEL,源代码支持它。我的问题很简单,如何使用以下代码执行此操作?
int ret = avformat_open_input(&pFormatCtx, [@"rtsp://ip/axis-media/media.amp" UTF8String], NULL, NULL);
我尝试了以下内容:
pFormatCtx = avformat_alloc_context();
pFormatCtx->priv_data = malloc(sizeof(RTSPState));
RTSPState *rt = pFormatCtx->priv_data;
rt->control_transport = RTSP_MODE_TUNNEL;
int ret = avformat_open_input(&pFormatCtx, [@"rtsp://ip/axis-media/media.amp" UTF8String], NULL, NULL);
但它只是忽略了它(它仍然继续使用RTP)。我试过这个以及
int ret = avformat_open_input(&pFormatCtx, [@"rtsp://ip/axis-media/media.amp" UTF8String], NULL, NULL);
RTSPState *rt = pFormatCtx->priv_data;
rt->control_transport = RTSP_MODE_TUNNEL;
我该如何解决这个问题?我认为它很简单,因为ENUM就在那里。
工作解决方案
AVDictionary *opts = 0;
int ret = av_dict_set(&opts, "rtsp_transport", "http", 0);
ret = avformat_open_input(&pFormatCtx, [@"rtsp://ip:80/axis-media/media.amp" UTF8String], NULL, &opts);
av_dict_free(&opts);
答案 0 :(得分:10)
AVDictionary *opts = 0;
if (usesTcp) {
int ret = av_dict_set(&opts, "rtsp_transport", "tcp", 0);
}
err = avformat_open_input(&avfContext, filename, NULL, &opts);
av_dict_free(&opts);