zoukankan      html  css  js  c++  java
  • ffmpeg参数设置,AVCodecContext设置, h264 profile

     c->profile  =FF_PROFILE_H264_MAIN                 ;

    FFmpeg and x264 Encoding Guide 参数说明:http://ffmpeg.org/trac/ffmpeg/wiki/x264EncodingGuide

    preset 与编码速度和质量相关

    av_opt_set(c->priv_data, "preset", "slow", 0);  Current presets in descending order of speed are: ultrafast,superfastveryfastfasterfastmediumslowslowerveryslow,placebo.

    priv_data  属于每个编码器特有的设置域,用av_opt_set 设置

    2014/5/29 :今天发现 av_opt_set(enc_ctx->priv_data, "preset", "slow", 0);   slow的编码质量比medium(默认值)好多了。

    固定码率150K,设置slow时:编码速度:245 fps 4ms

    [libx264 @ 014bbb40] frame I:38 Avg QP:33.69 size: 3763
    [libx264 @ 014bbb40] frame P:262 Avg QP:35.79 size: 381

    meidum 时:编码速度:335 fps 2ms,

    [libx264 @ 018dbb40] frame I:38 Avg QP:34.33 size: 3234
    [libx264 @ 018dbb40] frame P:262 Avg QP:37.83 size: 455

    veryslow 时:编码速度:140 fps 7ms

    [libx264 @ 0187cb40] frame I:38 Avg QP:35.10 size: 3582
    [libx264 @ 0187cb40] frame P:262 Avg QP:37.24 size: 405

    如何设置固定码率编码 

    CBR (Constant Bit Rate)

    There is no native CBR mode, but you can "simulate" a constant bit rate setting by tuning the parameters of ABR, like

    ffmpeg -i input -c:v libx264 -b:v 4000k -minrate 4000k -maxrate 4000k -bufsize 1835k out.m2v
    

    in this example, -bufsize is the "rate control buffer" so it will enforce your requested "average" (4000k in this case) across each 1835k worth of video. So basically it is assumed that the receiver/end player will buffer that much data so it's ok to fluctuate within that much.

    Of course, if it's all just empty/black frames then it will still serve less than that many bits/s (but it will raise the quality level as much as it can, up to the crf level).

    只设置bit_rate是平均码率,不一定能控制住

    c->bit_rate = 400000;
    c->rc_max_rate = 400000;
    c->rc_min_rate = 400000;

    提示  [libx264 @ 00c70be0] VBV maxrate specified, but no bufsize, ignored   

    再设置  c->rc_buffer_size = 200000;  即可。

    如此控制后编码质量明显差了。。。

  • 相关阅读:
    opencv出现问题:/usr/lib/x86_64-linux-gnu/libpng16.so.16: undefined reference to `inflateValidate@ZLIB_1.2.9'
    SCI-HUB 解锁论文的正确姿势——如何免费下载论文
    VS2019 实现与 Linux服务器同步
    VS Code 写代码实时同步服务器【Sftp插件】
    Docker实用技巧(二):容器与主机之间复制文件
    Docker实用技巧(一):镜像的备份/保存/加载/删除
    mycat注解及高可用(三)
    mycat分片及主从(二)
    SVN中trunk,branches,tags用法详解
    寄存器的英文全称
  • 原文地址:https://www.cnblogs.com/mlj318/p/3068737.html
Copyright © 2011-2022 走看看