美文网首页
ffmpeg的转码问题

ffmpeg的转码问题

作者: Greathouse | 来源:发表于2016-07-22 14:39 被阅读97次

    //ffmpeg的转码问题

    如果将pcm数据转码为mp3数据时需要设置

    //AVSampleFormat sample_fmt

    //即AVCodecContext->sample_fmt

    //这个值对于mp3的话要设置为

    // AV_SAMPLE_FMT_U8P,         ///< unsigned 8 bits, planar

    // AV_SAMPLE_FMT_S16P,        ///< signed 16 bits, planar

    // AV_SAMPLE_FMT_S32P,        ///< signed 32 bits, planar

    // AV_SAMPLE_FMT_FLTP,        ///< float, planar

    // AV_SAMPLE_FMT_DBLP,        ///< double, planar

    // 因为ffmpeg的最新版本做了更新 有些编码设置sample_fmt 需要加上

    // p属性(平面的意思)

    相关文章

      网友评论

          本文标题:ffmpeg的转码问题

          本文链接:https://www.haomeiwen.com/subject/cqeijttx.html