1

我阅读了上一个帖子,这是来自 NISHAnT, FFMPEG: Dynamic change of bit_rate for Video

 avcodec_init();

 avcodec_register_all();

 codec = avcodec_find_encoder(CODEC_ID_H263);

 c = avcodec_alloc_context();

 picture= avcodec_alloc_frame();

    c->bit_rate = bitrate;
    c->width = w;
    c->height = h;
    c->time_base= (AVRational){1,framerate};
    c->pix_fmt = PIX_FMT_YUV420P;

 avcodec_close(c);

 av_free(c);

这是我的代码:

    if(previous_BR != cur_BR){
        previous_BR = cur_BR;

        AVCodecContext* new_c = av_mallocz(sizeof(AVCodecContext));;

        avcodec_copy_context(new_c, ost_table[0]->st->codec);


        avcodec_close(ost_table[0]->st->codec);
        av_free(ost_table[0]->st->codec);

        avcodec_init();
        avcodec_register_all();

        ost_table[0]->enc = avcodec_find_encoder(CODEC_ID_H264);
        new_c = avcodec_alloc_context3(ost_table[0]->enc);
        ost_table[0]->st->codec = new_c;

        AVFrame *picture= avcodec_alloc_frame();

        new_c->bit_rate = cur_BR;
        new_c->width = 352;
        new_c->height = 288;
        int framerate = 30;
        new_c->time_base= (AVRational){1,framerate};
        new_c->pix_fmt = PIX_FMT_YUV420P;
        new_c->codec_type = AVMEDIA_TYPE_VIDEO;
        new_c->codec_id = CODEC_ID_H264;}

我试图将我的代码添加到 transcode(),但 ffmpeg 在通过我的代码后退出。我的代码有问题吗?或者我还应该添加什么?

我把代码放在“redo:”之后,这样它就会递归循环回来。请帮忙 !!

谢谢你。

4

1 回答 1

0

c 是AVCodecContext结构。您必须首先为您正在播放的文件类型配置 ffmpeg。通过在 ffmpeg 根目录中配置第一个 build.sh 文件来构建它。对于文件类型,您必须配置 codec9coder-decoder) 和 muxer/demuxer。例如,要播放 avi 文件,您必须为 avi 配置 muxer/demuxer 和编解码器,分别为 MPEG "AVI" 和 "MPEG4"。

于 2012-04-13T07:48:43.410 回答