解决 ffmpeg 在avformat_find_stream_info执行时间太长

用ffmpeg做demux,网上很多参考文章。对于网络流,avformt_find_stream_info()函数默认需要花费较长的时间进行流格式探测,
那么,如何减少探测时间内? 可以通过设置AVFotmatContext的probesize和max_analyze_duration属性进行调节:(如果设置探测时间过短会导致在探测某些cdn来的流的时候探测不到音频流)

  .............
   if (avformat_open_input(&(handle->pFormatContext), "", handle->pInputFormat, NULL) < 0) {
        av_free(handle->inputBuffer);
        *errorCode = -4;
        return FALSE;
    }
    (handle->fpState)(handle, 51);

    AVDictionary* pOptions = NULL;
    handle->pFormatContext->probesize = 100 *1024;
    handle->pFormatContext->max_analyze_duration = 5 * AV_TIME_BASE;
    if (avformat_find_stream_info(handle->pFormatContext, &pOptions) < 0) {
        .........
        return FALSE;
    }
    ...............

备注:如果设置探测时间过短会导致在探测某些cdn来的流的时候探测不到音频流!

转:http://blog.csdn.net/itpeng523/article/details/38581301

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值