4

我正在尝试从使用 RTSP over HTTP 的 Axis 网络摄像机进行流式传输。我可以让正常的 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);
4

1 回答 1

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);
于 2013-01-22T16:42:15.243 回答