当前位置:   article > 正文

FFmpeg代码实现抽取音频、视频数据_ffmpeg 提取音频

ffmpeg 提取音频

今天开始撸代码,首先使用FFmpeg的API抽取一个MP4文件的音频数据。

IDE

应该是第一次在Mac上做C/C++开发,纠结过后选择使用CLion 开发。CLionJetBrains下专门用来开发C/C++的IDE,已经用习惯了Android studio和IntelliJ IDEA ,所以CLion用起来还是很顺手的。

在新建一个C项目后,需要把FFmpeg的库导入才能正常运行。我们修改项目的CMakeLists.txt文件。

抽取音频AAC数据

其实我们要做的主要就是一个文件的操作,把一个文件打开,从里面拿出它的一部分数据,再把这部分数据放到另一个文件中保存。

定义参数

  1. #include <stdio.h>
  2. #include <libavutil/log.h>
  3. #include <libavformat/avformat.h>
  4. //上下文
  5. AVFormatContext *fmt_ctx = NULL;
  6. AVFormatContext *ofmt_ctx = NULL;
  7. //支持各种各样的输出文件格式,MP4,FLV,3GP等等
  8. AVOutputFormat *output_fmt = NULL;
  9. //输入流
  10. AVStream *in_stream = NULL;
  11. //输出流
  12. AVStream *out_stream = NULL;
  13. //存储压缩数据
  14. AVPacket packet;
  15. //要拷贝的流
  16. int audio_stream_index = -1;

1.打开输入文件,提取参数

  1. //打开输入文件,关于输入文件的所有就保存到fmt_ctx中了
  2. err_code = avformat_open_input(&fmt_ctx, src_fileName, NULL, NULL);
  3. if (err_code < 0) {
  4. av_log(NULL, AV_LOG_ERROR, "cant open file:%s\n", av_err2str(err_code));
  5. return -1;
  6. }
  7. if(fmt_ctx->nb_streams<2){
  8. //流数小于2,说明这个文件音频、视频流这两条都不能保证,输入文件有错误
  9. av_log(NULL, AV_LOG_ERROR, "输入文件错误,流不足2条\n");
  10. exit(1);
  11. }
  12. //拿到文件中音频流
  13. in_stream = fmt_ctx->streams[1];
  14. //参数信息
  15. AVCodecParameters *in_codecpar = in_stream->codecpar;
  16. //找到最好的音频流
  17. audio_stream_index = av_find_best_stream(fmt_ctx, AVMEDIA_TYPE_AUDIO, -1, -1, NULL, 0);
  18. if(audio_stream_index < 0){
  19. av_log(NULL, AV_LOG_DEBUG, "寻找最好音频流失败,请检查输入文件!\n");
  20. return AVERROR(EINVAL);
  21. }

2.准备输出文件,输出流

  1. // 输出上下文
  2. ofmt_ctx = avformat_alloc_context();
  3. //根据目标文件名生成最适合的输出容器
  4. output_fmt = av_guess_format(NULL,dst_fileName,NULL);
  5. if(!output_fmt){
  6. av_log(NULL, AV_LOG_DEBUG, "根据目标生成输出容器失败!\n");
  7. exit(1);
  8. }
  9. ofmt_ctx->oformat = output_fmt;
  10. //新建输出流
  11. out_stream = avformat_new_stream(ofmt_ctx, NULL);
  12. if(!out_stream){
  13. av_log(NULL, AV_LOG_DEBUG, "创建输出流失败!\n");
  14. exit(1);
  15. }

3. 数据拷贝

3.1 参数信息

  1. // 将参数信息拷贝到输出流中,我们只是抽取音频流,并不做音频处理,所以这里只是Copy
  2. if((err_code = avcodec_parameters_copy(out_stream->codecpar, in_codecpar)) < 0 ){
  3. av_strerror(err_code, errors, ERROR_STR_SIZE);
  4. av_log(NULL, AV_LOG_ERROR,"拷贝编码参数失败!, %d(%s)\n",
  5. err_code, errors);
  6. }

3.2 初始化AVIOContext

  1. //初始化AVIOContext,文件操作由它完成
  2. if((err_code = avio_open(&ofmt_ctx->pb, dst_fileName, AVIO_FLAG_WRITE)) < 0) {
  3. av_strerror(err_code, errors, 1024);
  4. av_log(NULL, AV_LOG_DEBUG, "Could not open file %s, %d(%s)\n",
  5. dst_fileName,
  6. err_code,
  7. errors);
  8. exit(1);
  9. }

3.3 开始拷贝

  1. //初始化 AVPacket, 我们从文件中读出的数据会暂存在其中
  2. av_init_packet(&packet);
  3. packet.data = NULL;
  4. packet.size = 0;
  5. // 写头部信息
  6. if (avformat_write_header(ofmt_ctx, NULL) < 0) {
  7. av_log(NULL, AV_LOG_DEBUG, "Error occurred when opening output file");
  8. exit(1);
  9. }
  10. //每读出一帧数据
  11. while(av_read_frame(fmt_ctx, &packet) >=0 ){
  12. if(packet.stream_index == audio_stream_index){
  13. //时间基计算,音频pts和dts一致
  14. packet.pts = av_rescale_q_rnd(packet.pts, in_stream->time_base, out_stream->time_base, (AV_ROUND_NEAR_INF|AV_ROUND_PASS_MINMAX));
  15. packet.dts = packet.pts;
  16. packet.duration = av_rescale_q(packet.duration, in_stream->time_base, out_stream->time_base);
  17. packet.pos = -1;
  18. packet.stream_index = 0;
  19. //将包写到输出媒体文件
  20. av_interleaved_write_frame(ofmt_ctx, &packet);
  21. //减少引用计数,避免内存泄漏
  22. av_packet_unref(&packet);
  23. }
  24. }
  25. //写尾部信息
  26. av_write_trailer(ofmt_ctx);
  27. //最后别忘了释放内存
  28. avformat_close_input(&fmt_ctx);
  29. avio_close(ofmt_ctx->pb);

执行

./MyC /Users/david/Desktop/1080p.mov /Users/david/Desktop/test.aac

抽取视频数据

抽取视频信息并保存在文件中的流程甚至代码和上面抽取音频基本一致。

  1. //拿到文件中音频流 或者 视频流,所有流都在streams数组中
  2. in_stream = fmt_ctx->streams[1];
  3. //找到最好的视频流
  4. video_stream_index = av_find_best_stream(fmt_ctx, AVMEDIA_TYPE_VIDEO, -1, -1, NULL, 0);
  5. packet.dts = av_rescale_q_rnd(packet.dts, in_stream->time_base, out_stream->time_base, (AV_ROUND_NEAR_INF|AV_ROUND_PASS_MINMAX));

基本上就是一些参数的改变,所有流程和代码保持不变,就可以把一个音视频文件中的视频数据抽取出来了,mp4、mov等格式随便,就是这么简单。。。

更新

====== 贴出完整代码,并对代码中的一些细节做出优化========

  1. #include <stdio.h>
  2. #include <libavutil/log.h>
  3. #include <libavformat/avio.h>
  4. #include <libavformat/avformat.h>
  5. #define ERROR_STR_SIZE 1024
  6. int main(int argc, char *argv[]) {
  7. int err_code;
  8. char errors[1024];
  9. char *src_filename = NULL;
  10. char *dst_filename = NULL;
  11. int audio_stream_index;
  12. //上下文
  13. AVFormatContext *fmt_ctx = NULL;
  14. AVFormatContext *ofmt_ctx = NULL;
  15. //支持各种各样的输出文件格式,MP4,FLV,3GP等等
  16. AVOutputFormat *output_fmt = NULL;
  17. AVStream *in_stream = NULL;
  18. AVStream *out_stream = NULL;
  19. AVPacket pkt;
  20. av_log_set_level(AV_LOG_DEBUG);
  21. if (argc < 3) {
  22. av_log(NULL, AV_LOG_DEBUG, "argc < 3!\n");
  23. return -1;
  24. }
  25. src_filename = argv[1];
  26. dst_filename = argv[2];
  27. if (src_filename == NULL || dst_filename == NULL) {
  28. av_log(NULL, AV_LOG_DEBUG, "src or dts file is null!\n");
  29. return -1;
  30. }
  31. if ((err_code = avformat_open_input(&fmt_ctx, src_filename, NULL, NULL)) < 0) {
  32. av_strerror(err_code, errors, 1024);
  33. av_log(NULL, AV_LOG_DEBUG, "打开输入文件失败: %s, %d(%s)\n",
  34. src_filename,
  35. err_code,
  36. errors);
  37. return -1;
  38. }
  39. if ((err_code = avformat_find_stream_info(fmt_ctx, NULL)) < 0) {
  40. av_strerror(err_code, errors, 1024);
  41. av_log(NULL, AV_LOG_DEBUG, "failed to find stream info: %s, %d(%s)\n",
  42. src_filename,
  43. err_code,
  44. errors);
  45. return -1;
  46. }
  47. av_dump_format(fmt_ctx, 0, src_filename, 0);
  48. if (fmt_ctx->nb_streams < 2) {
  49. //流数小于2,说明这个文件音频、视频流这两条都不能保证,输入文件有错误
  50. av_log(NULL, AV_LOG_ERROR, "输入文件错误,流不足2条\n");
  51. exit(1);
  52. }
  53. //拿到文件中音频流
  54. /**只需要修改这里AVMEDIA_TYPE_VIDEO参数**/
  55. audio_stream_index = av_find_best_stream(fmt_ctx, AVMEDIA_TYPE_AUDIO /*AVMEDIA_TYPE_VIDEO*/, -1, -1, NULL, 0);
  56. if (audio_stream_index < 0) {
  57. av_log(NULL, AV_LOG_DEBUG, " 获取音频流失败%s,%s\n",
  58. av_get_media_type_string(AVMEDIA_TYPE_AUDIO),
  59. src_filename);
  60. return AVERROR(EINVAL);
  61. }
  62. in_stream = fmt_ctx->streams[audio_stream_index];
  63. //参数信息
  64. AVCodecParameters *in_codecpar = in_stream->codecpar;
  65. // 输出上下文
  66. ofmt_ctx = avformat_alloc_context();
  67. //根据目标文件名生成最适合的输出容器
  68. output_fmt = av_guess_format(NULL, dst_filename, NULL);
  69. if (!output_fmt) {
  70. av_log(NULL, AV_LOG_DEBUG, "根据目标生成输出容器失败!\n");
  71. exit(1);
  72. }
  73. ofmt_ctx->oformat = output_fmt;
  74. //新建输出流
  75. out_stream = avformat_new_stream(ofmt_ctx, NULL);
  76. if (!out_stream) {
  77. av_log(NULL, AV_LOG_DEBUG, "创建输出流失败!\n");
  78. exit(1);
  79. }
  80. // 将参数信息拷贝到输出流中,我们只是抽取音频流,并不做音频处理,所以这里只是Copy
  81. if ((err_code = avcodec_parameters_copy(out_stream->codecpar, in_codecpar)) < 0) {
  82. av_strerror(err_code, errors, ERROR_STR_SIZE);
  83. av_log(NULL, AV_LOG_ERROR,
  84. "拷贝编码参数失败!, %d(%s)\n",
  85. err_code, errors);
  86. }
  87. out_stream->codecpar->codec_tag = 0;
  88. //初始化AVIOContext,文件操作由它完成
  89. if ((err_code = avio_open(&ofmt_ctx->pb, dst_filename, AVIO_FLAG_WRITE)) < 0) {
  90. av_strerror(err_code, errors, 1024);
  91. av_log(NULL, AV_LOG_DEBUG, "文件打开失败 %s, %d(%s)\n",
  92. dst_filename,
  93. err_code,
  94. errors);
  95. exit(1);
  96. }
  97. av_dump_format(ofmt_ctx, 0, dst_filename, 1);
  98. //初始化 AVPacket, 我们从文件中读出的数据会暂存在其中
  99. av_init_packet(&pkt);
  100. pkt.data = NULL;
  101. pkt.size = 0;
  102. // 写头部信息
  103. if (avformat_write_header(ofmt_ctx, NULL) < 0) {
  104. av_log(NULL, AV_LOG_DEBUG, "写入头部信息失败!");
  105. exit(1);
  106. }
  107. //每读出一帧数据
  108. while (av_read_frame(fmt_ctx, &pkt) >= 0) {
  109. if (pkt.stream_index == audio_stream_index) {
  110. pkt.pts = av_rescale_q_rnd(pkt.pts, in_stream->time_base, out_stream->time_base,
  111. (AV_ROUND_NEAR_INF | AV_ROUND_PASS_MINMAX));
  112. pkt.dts = av_rescale_q_rnd(pkt.dts, in_stream->time_base, out_stream->time_base,
  113. (AV_ROUND_NEAR_INF | AV_ROUND_PASS_MINMAX));
  114. pkt.duration = av_rescale_q(pkt.duration, in_stream->time_base, out_stream->time_base);
  115. pkt.pos = -1;
  116. pkt.stream_index = 0;
  117. //将包写到输出媒体文件
  118. av_interleaved_write_frame(ofmt_ctx, &pkt);
  119. //减少引用计数,避免内存泄漏
  120. av_packet_unref(&pkt);
  121. }
  122. }
  123. //写尾部信息
  124. av_write_trailer(ofmt_ctx);
  125. //最后别忘了释放内存
  126. avformat_close_input(&fmt_ctx);
  127. avio_close(ofmt_ctx->pb);
  128. return 0;
  129. }

./MyC /Users/david/Desktop/1080p.mov /Users/david/Desktop/test.aac

只需要修改av_find_best_stream中的参数,执行以下命令就可以将视频流提取,成为单独的视频文件

./MyC /Users/david/Desktop/1080p.mov /Users/david/Desktop/test1.mp4

./MyC /Users/david/Desktop/1080p.mov /Users/david/Desktop/test2.mov

原文 FFmpeg代码实现抽取音频、视频数据 - 掘金 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/174970
推荐阅读
相关标签
  

闽ICP备14008679号