·您当前的位置:首页 > 技术教程 > FFmpeg技术 >

[FFmpeg]用ffmpeg来做rtmp流实例

时间:2014-07-06 17:20酷播
[FFmpeg]用ffmpeg来做rtmp流实例

165行代码说明使用ffmpeg的api如何将文件推送到rtmp服务器。

执行:

  1. ./objs/tool /home/winlin/test_22m.flv rtmp://cuplayer.com:1935/live2/livestream1  

等价于:

  1. ffmpeg -re -i /home/winlin/test_22m.flv -vcodec copy -acodec copy -f flv -y rtmp://cuplayer:1935/live2/livestream  

结果:

输入flv文件,输出rtmp流:

  1. /* 
  2. The MIT License (MIT) 
  3.  
  4. Copyright (c) 2013 winlin 
  5.  
  6. Permission is hereby granted, free of charge, to any person obtaining a copy of 
  7. this software and associated documentation files (the "Software"), to deal in 
  8. the Software without restriction, including without limitation the rights to 
  9. use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of 
  10. the Software, and to permit persons to whom the Software is furnished to do so, 
  11. subject to the following conditions: 
  12.  
  13. The above copyright notice and this permission notice shall be included in all 
  14. copies or substantial portions of the Software. 
  15.  
  16. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
  17. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 
  18. FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 
  19. COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 
  20. IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 
  21. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 
  22. */ 
  23. /** 
  24. tool.cpp to implements the following command: 
  25. ffmpeg -re -i /home/winlin/test_22m.flv -vcodec copy -acodec copy -f flv -y rtmp://dev:1935/live/livestream 
  26. */ 
  27.  
  28. // for int64_t print using PRId64 format. 
  29. #ifndef __STDC_FORMAT_MACROS 
  30. #define __STDC_FORMAT_MACROS 
  31. #endif 
  32. // for cpp to use c-style macro UINT64_C in libavformat 
  33. #ifndef __STDC_CONSTANT_MACROS 
  34. #define __STDC_CONSTANT_MACROS 
  35. #endif 
  36.  
  37. #include <inttypes.h> 
  38.  
  39. extern "C"{ 
  40. #include <libavformat/avformat.h> 
  41.  
  42. #include <stdio.h> 
  43.  
  44. /** 
  45. * @ingroup lavc_decoding 
  46. * Required number of additionally allocated bytes at the end of the input bitstream for decoding. 
  47. * This is mainly needed because some optimized bitstream readers read 
  48. * 32 or 64 bit at once and could read over the end.<br> 
  49. * Note: If the first 23 bits of the additional bytes are not 0, then damaged 
  50. * MPEG bitstreams could cause overread and segfault. 
  51. */ 
  52. #define FF_INPUT_BUFFER_PADDING_SIZE 16 
  53.  
  54. void copy_stream_info(AVStream* ostream, AVStream* istream, AVFormatContext* ofmt_ctx){ 
  55. AVCodecContext* icodec = istream->codec; 
  56. AVCodecContext* ocodec = ostream->codec; 
  57. ostream->id = istream->id; 
  58. ocodec->codec_id = icodec->codec_id; 
  59. ocodec->codec_type = icodec->codec_type; 
  60. ocodec->bit_rate = icodec->bit_rate; 
  61. int extra_size = (uint64_t)icodec->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE; 
  62. ocodec->extradata = (uint8_t*)av_mallocz(extra_size); 
  63. memcpy(ocodec->extradata, icodec->extradata, icodec->extradata_size); 
  64. ocodec->extradata_sizeicodec->extradata_size; 
  65. // Some formats want stream headers to be separate. 
  66. if (ofmt_ctx->oformat->flags & AVFMT_GLOBALHEADER){ 
  67. ostream->codec->flags |= CODEC_FLAG_GLOBAL_HEADER; 
  68.  
  69. void copy_video_stream_info(AVStream* ostream, AVStream* istream, AVFormatContext* ofmt_ctx){ 
  70. copy_stream_info(ostream, istream, ofmt_ctx); 
  71. AVCodecContext* icodec = istream->codec; 
  72. AVCodecContext* ocodec = ostream->codec; 
  73. ocodec->width = icodec->width; 
  74. ocodec->height = icodec->height; 
  75. ocodec->time_base = icodec->time_base; 
  76. ocodec->gop_size = icodec->gop_size; 
  77. ocodec->pix_fmt = icodec->pix_fmt; 
  78.  
  79. void copy_audio_stream_info(AVStream* ostream, AVStream* istream, AVFormatContext* ofmt_ctx){ 
  80. copy_stream_info(ostream, istream, ofmt_ctx); 
  81. AVCodecContext* icodec = istream->codec; 
  82. AVCodecContext* ocodec = ostream->codec; 
  83. ocodec->sample_fmt = icodec->sample_fmt; 
  84. ocodec->sample_rate = icodec->sample_rate; 
  85. ocodec->channels = icodec->channels; 
  86.  
  87. int main(int argc, char** argv){ 
  88. if (argc <= 2) { 
  89. printf("Usage: %s <file> <url>\n" 
  90. "%s /home/winlin/test_22m.flv rtmp://dev:1935/live/livestream\n", 
  91. argv[0], argv[0]); 
  92. exit(-1); 
  93. const char* filename = argv[1]; 
  94. const char* url = argv[2]; 
  95. av_register_all(); 
  96. avformat_network_init(); 
  97. // open format context 
  98. AVFormatContext* ifmt_ctx = NULL
  99. if(avformat_open_input(&ifmt_ctx, filename, NULL, NULL) != 0){ 
  100. return -1; 
  101. if(avformat_find_stream_info(ifmt_ctx, NULL) < 0){ 
  102. return -1; 
  103. // create an output format context 
  104. AVFormatContext* ofmt_ctx = NULL
  105. if(avformat_alloc_output_context2(&ofmt_ctx, NULL, "flv", url) < 0){ 
  106. return -1; 
  107. // open file. 
  108. if(avio_open2(&ofmt_ctx->pb, url, AVIO_FLAG_WRITE, &ofmt_ctx->interrupt_callback, NULL) < 0){ 
  109. return -1; 
  110. // create stream 
  111. int stream_index; 
  112. if((stream_index = av_find_best_stream(ifmt_ctx, AVMEDIA_TYPE_VIDEO, -1, -1, NULL, 0)) >= 0){ 
  113. AVStream* istream = ifmt_ctx->streams[stream_index]; 
  114. AVStream* ostream = avformat_new_stream(ofmt_ctx, NULL); 
  115. if(!ostream){ 
  116. return -1; 
  117. copy_video_stream_info(ostream, istream, ofmt_ctx); 
  118. if((stream_index = av_find_best_stream(ifmt_ctx, AVMEDIA_TYPE_AUDIO, -1, -1, NULL, 0)) >= 0){ 
  119. AVStream* istream = ifmt_ctx->streams[stream_index]; 
  120. AVStream* ostream = avformat_new_stream(ofmt_ctx, NULL); 
  121. if(!ostream){ 
  122. return -1; 
  123. copy_audio_stream_info(ostream, istream, ofmt_ctx); 
  124. av_dump_format(ofmt_ctx, 0, url, 1); 
  125. // write header 
  126. if(avformat_write_header(ofmt_ctx, NULL) != 0){ 
  127. return -1; 
  128. // init packet(compressed data) 
  129. AVPacket pkt; 
  130. av_init_packet(&pkt); 
  131. // read packet 
  132. int64_t last_pts = 0
  133. while(av_read_frame(ifmt_ctx, &pkt) >= 0){ 
  134. if(av_interleaved_write_frame(ofmt_ctx, &pkt) < 0){ 
  135. return -1; 
  136. double time_ms = 0
  137. AVStream* stream = ofmt_ctx->streams[pkt.stream_index]; 
  138. if(stream->time_base.den > 0){ 
  139. time_ms = (pkt.pts - last_pts) * stream->time_base.num * 1000 / stream->time_base.den; 
  140. printf("write packet pts=%"PRId64", dts=%"PRId64", stream=%d sleep %.1fms\n", pkt.pts, pkt.dts, pkt.stream_index, time_ms); 
  141. if(time_ms > 500){ 
  142. av_usleep(time_ms * 1000); 
  143. last_pts = pkt.pts; 
  144. av_free_packet(&pkt); 
  145. // cleanup 
  146. avformat_free_context(ofmt_ctx); 
  147. avformat_close_input(&ifmt_ctx); 
  148. return 0; 

 

热门文章推荐

请稍候...

保利威视云平台-轻松实现点播直播视频应用

酷播云数据统计分析跨平台播放器