最新文章專題視頻專題問答1問答10問答100問答1000問答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
問答文章1 問答文章501 問答文章1001 問答文章1501 問答文章2001 問答文章2501 問答文章3001 問答文章3501 問答文章4001 問答文章4501 問答文章5001 問答文章5501 問答文章6001 問答文章6501 問答文章7001 問答文章7501 問答文章8001 問答文章8501 問答文章9001 問答文章9501
當(dāng)前位置: 首頁 - 科技 - 知識百科 - 正文

FFmpeg封裝格式處理:視音頻復(fù)用器(muxer)

來源:懂視網(wǎng) 責(zé)編:小采 時間:2020-11-09 14:38:47
文檔

FFmpeg封裝格式處理:視音頻復(fù)用器(muxer)

FFmpeg封裝格式處理:視音頻復(fù)用器(muxer):打算記錄一下基于FFmpeg的封裝格式處理方面的例子。包括了視音頻分離,復(fù)用,封裝格式轉(zhuǎn)換。這是第3篇。 本文記錄一個基于FFmpeg的視音頻復(fù)用器(Simplest FFmpeg muxer)。視音頻復(fù)用器(Muxer)即是將視頻壓縮數(shù)據(jù)(例如H.264)和音頻壓縮數(shù)據(jù)(例如A
推薦度:
導(dǎo)讀FFmpeg封裝格式處理:視音頻復(fù)用器(muxer):打算記錄一下基于FFmpeg的封裝格式處理方面的例子。包括了視音頻分離,復(fù)用,封裝格式轉(zhuǎn)換。這是第3篇。 本文記錄一個基于FFmpeg的視音頻復(fù)用器(Simplest FFmpeg muxer)。視音頻復(fù)用器(Muxer)即是將視頻壓縮數(shù)據(jù)(例如H.264)和音頻壓縮數(shù)據(jù)(例如A

打算記錄一下基于FFmpeg的封裝格式處理方面的例子。包括了視音頻分離,復(fù)用,封裝格式轉(zhuǎn)換。這是第3篇。 本文記錄一個基于FFmpeg的視音頻復(fù)用器(Simplest FFmpeg muxer)。視音頻復(fù)用器(Muxer)即是將視頻壓縮數(shù)據(jù)(例如H.264)和音頻壓縮數(shù)據(jù)(例如AAC)合

打算記錄一下基于FFmpeg的封裝格式處理方面的例子。包括了視音頻分離,復(fù)用,封裝格式轉(zhuǎn)換。這是第3篇。

本文記錄一個基于FFmpeg的視音頻復(fù)用器(Simplest FFmpeg muxer)。視音頻復(fù)用器(Muxer)即是將視頻壓縮數(shù)據(jù)(例如H.264)和音頻壓縮數(shù)據(jù)(例如AAC)合并到一個封裝格式數(shù)據(jù)(例如MKV)中去。如圖所示。在這個過程中并不涉及到編碼和解碼。

\

本文記錄的程序?qū)⒁粋€H.264編碼的視頻碼流文件和一個MP3編碼的音頻碼流文件,合成為一個MP4封裝格式的文件。
,一共初始化了3個AVFormatContext,其中2個用于輸入,1個用于輸出。3個AVFormatContext初始化之后,通過avcodec_copy_context()函數(shù)可以將輸入視頻/音頻的參數(shù)拷貝至輸出視頻/音頻的AVCodecContext結(jié)構(gòu)體。然后分別調(diào)用視頻輸入流和音頻輸入流的av_read_frame(),從視頻輸入流中取出視頻的AVPacket,音頻輸入流中取出音頻的AVPacket,分別將取出的AVPacket寫入到輸出文件中即可。其間用到了一個不太常見的函數(shù)av_compare_ts(),是比較時間戳用的。通過該函數(shù)可以決定該寫入視頻還是音頻。

本文介紹的視音頻復(fù)用器,輸入的視頻不一定是H.264裸流文件,音頻也不一定是純音頻文件??梢赃x擇兩個封裝過的視音頻文件作為輸入。程序會從視頻輸入文件中“挑”出視頻流,音頻輸入文件中“挑”出音頻流,再將“挑選”出來的視音頻流復(fù)用起來。 PS1:對于某些封裝格式(例如MP4/FLV/MKV等)中的H.264,需要用到名稱為“h264_mp4toannexb”的bitstream filter。
PS2:對于某些封裝格式(例如MP4/FLV/MKV等)中的AAC,需要用到名稱為“aac_adtstoasc”的bitstream filter。

簡單介紹一下流程中各個重要函數(shù)的意義:

avformat_open_input():打開輸入文件。
avcodec_copy_context():賦值A(chǔ)VCodecContext的參數(shù)。
avformat_alloc_output_context2():初始化輸出文件。
avio_open():打開輸出文件。
avformat_write_header():寫入文件頭。
av_compare_ts():比較時間戳,決定寫入視頻還是寫入音頻。這個函數(shù)相對要少見一些。
av_read_frame():從輸入文件讀取一個AVPacket。
av_interleaved_write_frame():寫入一個AVPacket到輸出文件。
av_write_trailer():寫入文件尾。

代碼

下面貼上代碼:
[cpp] view plaincopy
  1. /**
  2. * 最簡單的基于FFmpeg的視音頻復(fù)用器
  3. * Simplest FFmpeg Muxer
  4. *
  5. * 雷霄驊 Lei Xiaohua
  6. * leixiaohua1020@126.com
  7. * 中國傳媒大學(xué)/數(shù)字電視技術(shù)
  8. * Communication University of China / Digital TV Technology
  9. * http://blog.csdn.net/leixiaohua1020
  10. *
  11. * 本程序可以將視頻碼流和音頻碼流打包到一種封裝格式中。
  12. * 程序中將MP3編碼的音頻碼流和H.264編碼(MPEG2TS封裝中)的視頻碼流打包成
  13. * MP4封裝格式的文件。
  14. * 需要注意的是本程序并不改變視音頻的編碼格式。
  15. *
  16. * This software mux a video bitstream and a audio bitstream
  17. * together into a file.
  18. * In this example, it mux a H.264 bitstream (in MPEG2TS) and
  19. * a MP3 bitstream file together into MP4 format file.
  20. *
  21. */
  22. #include 
  23. extern "C"
  24. {
  25. #include "libavformat/avformat.h"
  26. };
  27. /*
  28. FIX: H.264 in some container format (FLV, MP4, MKV etc.) need
  29. "h264_mp4toannexb" bitstream filter (BSF)
  30. *Add SPS,PPS in front of IDR frame
  31. *Add start code ("0,0,0,1") in front of NALU
  32. H.264 in some container (MPEG2TS) don't need this BSF.
  33. */
  34. //'1': Use H.264 Bitstream Filter
  35. #define USE_H264BSF 0
  36. /*
  37. FIX:AAC in some container format (FLV, MP4, MKV etc.) need
  38. "aac_adtstoasc" bitstream filter (BSF)
  39. */
  40. //'1': Use AAC Bitstream Filter
  41. #define USE_AACBSF 0
  42. int main(int argc, char* argv[])
  43. {
  44. AVOutputFormat *ofmt = NULL;
  45. //輸入對應(yīng)一個AVFormatContext,
    輸出對應(yīng)一個AVFormatContext
  46. //(Input AVFormatContext and Output AVFormatContext)
  47. AVFormatContext *ifmt_ctx_v = NULL, *ifmt_ctx_a = NULL,*ofmt_ctx = NULL;
  48. AVPacket pkt;
  49. int ret, i;
  50. char *in_filename_v = "cuc_ieschool.ts";//輸入文件名(Input file URL)
  51. //char *in_filename_v = "cuc_ieschool.h264";
  52. //char *in_filename_a = "cuc_ieschool.mp3";
  53. //char *in_filename_a = "gowest.m4a";
  54. //char *in_filename_a = "gowest.aac";
  55. char *in_filename_a = "huoyuanjia.mp3";
  56. char *out_filename = "cuc_ieschool.mp4";//
    輸出文件名(Output file URL)
  57. av_register_all();
  58. //輸入(Input)
  59. if ((ret = avformat_open_input(&ifmt_ctx_v, in_filename_v, 0, 0)) < 0) {
  60. printf( "Could not open input file.");
  61. goto end;
  62. }
  63. if ((ret = avformat_find_stream_info(ifmt_ctx_v, 0)) < 0) {
  64. printf( "Failed to retrieve input stream information");
  65. goto end;
  66. }
  67. if ((ret = avformat_open_input(&ifmt_ctx_a, in_filename_a, 0, 0)) < 0) {
  68. printf( "Could not open input file.");
  69. goto end;
  70. }
  71. if ((ret = avformat_find_stream_info(ifmt_ctx_a, 0)) < 0) {
  72. printf( "Failed to retrieve input stream information");
  73. goto end;
  74. }
  75. printf("Input Information=====================\n");
  76. av_dump_format(ifmt_ctx_v, 0, in_filename_v, 0);
  77. av_dump_format(ifmt_ctx_a, 0, in_filename_a, 0);
  78. printf("======================================\n");
  79. //
    輸出(Output)
  80. avformat_alloc_output_context2(&ofmt_ctx, NULL, NULL, out_filename);
  81. if (!ofmt_ctx) {
  82. printf( "Could not create output context\n");
  83. ret = AVERROR_UNKNOWN;
  84. goto end;
  85. }
  86. ofmt = ofmt_ctx->oformat;
  87. int videoindex_v=-1,videoindex_out=-1;
  88. for (i = 0; i < ifmt_ctx_v->nb_streams; i++) {
  89. //根據(jù)輸入流創(chuàng)建
    輸出流(Create output AVStream according to input AVStream)
  90. if(ifmt_ctx_v->streams[i]->codec->codec_type==AVMEDIA_TYPE_VIDEO){
  91. videoindex_v=i;
  92. AVStream *in_stream = ifmt_ctx_v->streams[i];
  93. AVStream *out_stream = avformat_new_stream(ofmt_ctx, in_stream->codec->codec);
  94. if (!out_stream) {
  95. printf( "Failed allocating output stream\n");
  96. ret = AVERROR_UNKNOWN;
  97. goto end;
  98. }
  99. videoindex_out=out_stream->index;
  100. //復(fù)制AVCodecContext的設(shè)置(Copy the settings of AVCodecContext)
  101. if (avcodec_copy_context(out_stream->codec, in_stream->codec) < 0) {
  102. printf( "Failed to copy context from input to output stream codec context\n");
  103. goto end;
  104. }
  105. out_stream->codec->codec_tag = 0;
  106. if (ofmt_ctx->oformat->flags & AVFMT_GLOBALHEADER)
  107. out_stream->codec->flags |= CODEC_FLAG_GLOBAL_HEADER;
  108. break;
  109. }
  110. }
  111. int audioindex_a=-1,audioindex_out=-1;
  112. for (i = 0; i < ifmt_ctx_a->nb_streams; i++) {
  113. //根據(jù)輸入流創(chuàng)建
    輸出流(Create output AVStream according to input AVStream)
  114. if(ifmt_ctx_a->streams[i]->codec->codec_type==AVMEDIA_TYPE_AUDIO){
  115. audioindex_a=i;
  116. AVStream *in_stream = ifmt_ctx_a->streams[i];
  117. AVStream *out_stream = avformat_new_stream(ofmt_ctx, in_stream->codec->codec);
  118. if (!out_stream) {
  119. printf( "Failed allocating output stream\n");
  120. ret = AVERROR_UNKNOWN;
  121. goto end;
  122. }
  123. audioindex_out=out_stream->index;
  124. //復(fù)制AVCodecContext的設(shè)置(Copy the settings of AVCodecContext)
  125. if (avcodec_copy_context(out_stream->codec, in_stream->codec) < 0) {
  126. printf( "Failed to copy context from input to output stream codec context\n");
  127. goto end;
  128. }
  129. out_stream->codec->codec_tag = 0;
  130. if (ofmt_ctx->oformat->flags & AVFMT_GLOBALHEADER)
  131. out_stream->codec->flags |= CODEC_FLAG_GLOBAL_HEADER;
  132. break;
  133. }
  134. }
  135. //
    輸出一下格式------------------
  136. printf("Output Information====================\n");
  137. av_dump_format(ofmt_ctx, 0, out_filename, 1);
  138. printf("======================================\n");
  139. //打開
    輸出文件(Open output file)
  140. if (!(ofmt->flags & AVFMT_NOFILE)) {
  141. if (avio_open(&ofmt_ctx->pb, out_filename, AVIO_FLAG_WRITE) < 0) {
  142. printf( "Could not open output file '%s'", out_filename);
  143. goto end;
  144. }
  145. }
  146. //寫文件頭(Write file header)
  147. if (avformat_write_header(ofmt_ctx, NULL) < 0) {
  148. printf( "Error occurred when opening output file\n");
  149. goto end;
  150. }
  151. int frame_index=0;
  152. int64_t cur_pts_v=0,cur_pts_a=0;
  153. //FIX
  154. #if USE_H264BSF
  155. AVBitStreamFilterContext* h264bsfc = av_bitstream_filter_init("h264_mp4toannexb");
  156. #endif
  157. #if USE_AACBSF
  158. AVBitStreamFilterContext* aacbsfc = av_bitstream_filter_init("aac_adtstoasc");
  159. #endif
  160. while (1) {
  161. AVFormatContext *ifmt_ctx;
  162. int stream_index=0;
  163. AVStream *in_stream, *out_stream;
  164. //獲取一個AVPacket(Get an AVPacket)
  165. if(av_compare_ts(cur_pts_v,ifmt_ctx_v->streams[videoindex_v]->time_base,cur_pts_a,ifmt_ctx_a->streams[audioindex_a]->time_base) <= 0){
  166. ifmt_ctx=ifmt_ctx_v;
  167. stream_index=videoindex_out;
  168. if(av_read_frame(ifmt_ctx, &pkt) >= 0){
  169. do{
  170. if(pkt.stream_index==videoindex_v){
  171. cur_pts_v=pkt.pts;
  172. break;
  173. }
  174. }while(av_read_frame(ifmt_ctx, &pkt) >= 0);
  175. }else{
  176. break;
  177. }
  178. }else{
  179. ifmt_ctx=ifmt_ctx_a;
  180. stream_index=audioindex_out;
  181. if(av_read_frame(ifmt_ctx, &pkt) >= 0){
  182. do{
  183. if(pkt.stream_index==audioindex_a){
  184. cur_pts_a=pkt.pts;
  185. break;
  186. }
  187. }while(av_read_frame(ifmt_ctx, &pkt) >= 0);
  188. }else{
  189. break;
  190. }
  191. }
  192. in_stream = ifmt_ctx->streams[pkt.stream_index];
  193. out_stream = ofmt_ctx->streams[stream_index];
  194. //FIX
  195. #if USE_H264BSF
  196. av_bitstream_filter_filter(h264bsfc, in_stream->codec, NULL, &pkt.data, &pkt.size, pkt.data, pkt.size, 0);
  197. #endif
  198. #if USE_AACBSF
  199. av_bitstream_filter_filter(aacbsfc, in_stream->codec, NULL, &pkt.data, &pkt.size, pkt.data, pkt.size, 0);
  200. #endif
  201. //FIX:No PTS (Example: Raw H.264)
  202. //Simple Write PTS
  203. if(pkt.pts==AV_NOPTS_VALUE){
  204. //Write PTS
  205. AVRational time_base1=in_stream->time_base;
  206. //Duration between 2 frames (us)
  207. int64_t calc_duration=(double)AV_TIME_BASE/av_q2d(in_stream->r_frame_rate);
  208. //Parameters
  209. pkt.pts=(double)(frame_index*calc_duration)/(double)(av_q2d(time_base1)*AV_TIME_BASE);
  210. pkt.dts=pkt.pts;
  211. pkt.duration=(double)calc_duration/(double)(av_q2d(time_base1)*AV_TIME_BASE);
  212. frame_index++;
  213. }
  214. /* copy packet */
  215. //轉(zhuǎn)換PTS/DTS(Convert PTS/DTS)
  216. pkt.pts = av_rescale_q_rnd(pkt.pts, in_stream->time_base, out_stream->time_base, (AVRounding)(AV_ROUND_NEAR_INF|AV_ROUND_PASS_MINMAX));
  217. pkt.dts = av_rescale_q_rnd(pkt.dts, in_stream->time_base, out_stream->time_base, (AVRounding)(AV_ROUND_NEAR_INF|AV_ROUND_PASS_MINMAX));
  218. pkt.duration = av_rescale_q(pkt.duration, in_stream->time_base, out_stream->time_base);
  219. pkt.pos = -1;
  220. pkt.stream_index=stream_index;
  221. printf("Write 1 Packet. size:%5d\tpts:%8d\n",pkt.size,pkt.pts);
  222. //寫入(Write)
  223. if (av_interleaved_write_frame(ofmt_ctx, &pkt) < 0) {
  224. printf( "Error muxing packet\n");
  225. break;
  226. }
  227. av_free_packet(&pkt);
  228. }
  229. //寫文件尾(Write file trailer)
  230. av_write_trailer(ofmt_ctx);
  231. #if USE_H264BSF
  232. av_bitstream_filter_close(h264bsfc);
  233. #endif
  234. #if USE_AACBSF
  235. av_bitstream_filter_close(aacbsfc);
  236. #endif
  237. end:
  238. avformat_close_input(&ifmt_ctx_v);
  239. avformat_close_input(&ifmt_ctx_a);
  240. /* close output */
  241. if (ofmt_ctx && !(ofmt->flags & AVFMT_NOFILE))
  242. avio_close(ofmt_ctx->pb);
  243. avformat_free_context(ofmt_ctx);
  244. if (ret < 0 && ret != AVERROR_EOF) {
  245. printf( "Error occurred.\n");
  246. return -1;
  247. }
  248. return 0;

聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

FFmpeg封裝格式處理:視音頻復(fù)用器(muxer)

FFmpeg封裝格式處理:視音頻復(fù)用器(muxer):打算記錄一下基于FFmpeg的封裝格式處理方面的例子。包括了視音頻分離,復(fù)用,封裝格式轉(zhuǎn)換。這是第3篇。 本文記錄一個基于FFmpeg的視音頻復(fù)用器(Simplest FFmpeg muxer)。視音頻復(fù)用器(Muxer)即是將視頻壓縮數(shù)據(jù)(例如H.264)和音頻壓縮數(shù)據(jù)(例如A
推薦度:
標(biāo)簽: 格式 處理 音頻
  • 熱門焦點(diǎn)

最新推薦

猜你喜歡

熱門推薦

專題
Top