ffmpeg只转封装不转码的代码实现

在有些场景下,其实只需要转封装,不需要转码,
大概步骤如下:
1. 打开输入的formatcontext
2. 打开输出文件
3. 打开输出的formatcontext
4. 写文件头
5. 复制codec信息
6. 读取输入frame
7. 写输出frame
8. 写文件尾
9. 关闭输出文件

代码如下:

点击(此处)折叠或打开

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <libavformat/avformat.h>
  4. #include <libavutil/avutil.h>

  5. int main(int argc, char *argv[])
  6. {
  7.     AVPacket pkt;
  8.     AVFormatContext *input_fmtctx = NULL;
  9.     AVFormatContext *output_fmtctx = NULL;
  10.     AVCodecContext *enc_ctx = NULL;
  11.     AVCodecContext *dec_ctx = NULL;
  12.     AVCodec *encoder = NULL;
  13.     int ret = 0;
  14.     int i = 0;

  15.     av_register_all();

  16.     if (avformat_open_input(&input_fmtctx, "./a.avi", NULL, NULL) < 0) {
  17.         av_log(NULL, AV_LOG_ERROR, "Cannot open the file %s\n", "./a.mp4");
  18.         return -ENOENT;
  19.     }

  20.     if (avformat_find_stream_info(input_fmtctx,0) < 0) {
  21.         av_log(NULL, AV_LOG_ERROR, "bbs.chinaffmpeg.org 孙悟空 Failed to retrieve input stream information\n");
  22.         return -EINVAL;
  23.     }

  24.     av_dump_format(input_fmtctx, NULL, "./a.avi", 0);

  25.     if (avformat_alloc_output_context2(&output_fmtctx, NULL, NULL, "./fuck.mp4") < 0) {
  26.         av_log(NULL, AV_LOG_ERROR, "bbs.chinaffmpeg.org 孙悟空 Cannot open the file %s\n", "./fuck.mp4");
  27.         return -ENOENT;
  28.     }

  29.     for (= 0; i < input_fmtctx->nb_streams; i++) {
  30.         AVStream *out_stream = NULL;
  31.         AVStream *in_stream = NULL;
  32.         in_stream = input_fmtctx->streams;
  33.         out_stream = avformat_new_stream(output_fmtctx, NULL);
  34.         if (out_stream < 0) {
  35.             av_log(NULL, AV_LOG_ERROR, "bbs.chinaffmpeg.org 孙悟空 Alloc new Stream error\n");
  36.             return -EINVAL;
  37.         }

  38.         avcodec_copy_context(output_fmtctx->streams->codec, input_fmtctx->streams->codec);
  39.         out_stream->codec->codec_tag = 0;
  40.         if (output_fmtctx->oformat->flags & AVFMT_GLOBALHEADER) {
  41.             out_stream->codec->flags |= CODEC_FLAG_GLOBAL_HEADER;
  42.         }
  43.     }
  44.     av_dump_format(output_fmtctx, NULL, "./fuck.mp4", 1);
  45.     av_init_packet(&pkt);
  46.     pkt.data = NULL;
  47.     pkt.size = 0;

  48.     if (avio_open(&output_fmtctx->pb, "./fuck.mp4", AVIO_FLAG_WRITE) < 0) {
  49.         av_log(NULL, AV_LOG_ERROR, "bbs.chinaffmpeg.org 孙悟空 cannot open the output file '%s'\n","./fuck.mp4");
  50.         return -ENOENT;
  51.     }

  52.     if ((ret = avformat_write_header(output_fmtctx, NULL)) < 0) {
  53.         av_log(NULL, AV_LOG_ERROR, "bbs.chinaffmpeg.org 孙悟空 Cannot write the header for the file '%s' ret = %d\n", "fuck.mp4", ret);
  54.         return -ENOENT;
  55.     }


  56.     while (1) {
  57.         AVStream *in_stream = NULL;
  58.         AVStream *out_stream = NULL;

  59.         ret = av_read_frame(input_fmtctx, &pkt);
  60.         if (ret < 0) {
  61.             av_log(NULL, AV_LOG_ERROR, "bbs.chinaffmpeg.org 孙悟空 read frame error %d\n", ret);
  62.             break;
  63.         }

  64.         in_stream = input_fmtctx->streams[pkt.stream_index];
  65.         out_stream = output_fmtctx->streams[pkt.stream_index];
  66.         pkt.pts = av_rescale_q_rnd(pkt.pts, in_stream->time_base, out_stream->time_base, AV_ROUND_NEAR_INF | AV_ROUND_PASS_MINMAX);
  67.         pkt.dts = av_rescale_q_rnd(pkt.dts, in_stream->time_base, out_stream->time_base, AV_ROUND_NEAR_INF | AV_ROUND_PASS_MINMAX);
  68.         pkt.duration = av_rescale_q(pkt.duration, in_stream->time_base, out_stream->time_base);
  69.         pkt.pos = -1;
  70.         ret = av_write_frame(output_fmtctx, &pkt);

  71.         if (ret < 0) {
  72.             av_log(NULL, AV_LOG_ERROR, "bbs.chinaffmpeg.org 孙悟空 Muxing Error\n");
  73.             break;
  74.         }
  75.         av_free_packet(&pkt);
  76.     }

  77.     av_write_trailer(output_fmtctx);
  78.     avformat_close_input(&input_fmtctx);
  79.     avio_close(output_fmtctx->pb);
  80.     avformat_free_context(output_fmtctx);

  81.         return 0;

  82. }


  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值