·您当前的位置:首页 > 技术教程 > AS2与AS3技术 >

[HLS]做自己的m3u8点播系统使用HTTP Live Streaming(HLS技术)(2)

时间:2014-03-07 14:31cuplayer.com
5、 安装nginx及nginx-rtmp-module mkdir~/nginx-source cd~/nginx-source wgethttp://nginx.org/download/nginx-1.2.4.tar.gz tarzxvfnginx-1.2.4.tar.gz wget-Onginx-rtmp-module.ziphttps://github.com/arut/ngi

5、 安装nginx及nginx-rtmp-module

  1. mkdir ~/nginx-source 
  2.  
  3. cd  ~/nginx-source 
  4.  
  5. wget http://nginx.org/download/nginx-1.2.4.tar.gz 
  6.  
  7. tar zxvf nginx-1.2.4.tar.gz 
  8.  
  9. wget -O nginx-rtmp-module.zip  https://github.com/arut/nginx-rtmp-module/archive/master.zip 
  10.  
  11. unzip nginx-rtmp-module.zip 
  12.  
  13. wget -O ngx_cache_purge.zip https://github.com/FRiCKLE/ngx_cache_purge/archive/master.zip 
  14.  
  15. unzip ngx_cache_purge.zip 
  16.  
  17. cd nginx-1.2.4 
  18.  
  19. ./configure –user=daemon –group=daemon –prefix=/usr/local/nginx-1.2.4/ –add-module=../nginx-rtmp-module-master –add-module=../nginx-rtmp-module-master/hls –add-module=../ngx_cache_purge-master  –with-http_stub_status_module –with-http_ssl_module –with-http_sub_module –with-md5=/usr/lib –with-sha1=/usr/lib –with-http_gzip_static_module 
  20.  
  21. 在nginx.conf中增加rtmp模块的相关配置,配置例子 
  22.  
  23. rtmp { 
  24.  
  25. server { 
  26.  
  27. listen 1935; 
  28.  
  29. chunk_size 4000; 
  30.  
  31. # TV mode: one publisher, many subscribers 
  32.  
  33. application mytv { 
  34.  
  35. # enable live streaming 
  36.  
  37. live on; 
  38.  
  39. # record first 1K of stream 
  40.  
  41. record all; 
  42.  
  43. record_path /tmp/av; 
  44.  
  45. record_max_size 1K; 
  46.  
  47. # append current timestamp to each flv 
  48.  
  49. record_unique on; 
  50.  
  51. # publish only from localhost 
  52.  
  53. allow publish 127.0.0.1; 
  54.  
  55. deny publish all; 
  56.  
  57. #allow play all; 
  58.  
  59.  
  60. # Transcoding (ffmpeg needed) 
  61.  
  62. application big { 
  63.  
  64. live on; 
  65.  
  66. # On every pusblished stream run this command (ffmpeg) 
  67.  
  68. # with substitutions: $app/${app}, $name/${name} for application & stream name. 
  69.  
  70.  
  71. # This ffmpeg call receives stream from this application & 
  72.  
  73. # reduces the resolution down to 32×32. The stream is the published to 
  74.  
  75. # ‘small’ application (see below) under the same name. 
  76.  
  77.  
  78. # ffmpeg can do anything with the stream like video/audio 
  79.  
  80. # transcoding, resizing, altering container/codec params etc 
  81.  
  82.  
  83. # Multiple exec lines can be specified. 
  84.  
  85. exec /usr/local/bin/ffmpeg -re -i rtmp://localhost:1935/$app/$name -vcodec flv -acodec copy -s 32×32 -f flv rtmp://localhost:1935/small/${name}; 
  86.  
  87.  
  88. application small { 
  89.  
  90. live on; 
  91.  
  92. # Video with reduced resolution comes here from ffmpeg 
  93.  
  94.  
  95. application mypush { 
  96.  
  97. live on; 
  98.  
  99. # Every stream published here 
  100.  
  101. # is automatically pushed to 
  102.  
  103. # these two machines 
  104.  
  105. #push rtmp1.example.com; 
  106.  
  107. #push rtmp2.example.com:1934; 
  108.  
  109.  
  110. application mypull { 
  111.  
  112. live on; 
  113.  
  114. # Pull all streams from remote machine 
  115.  
  116. # and play locally 
  117.  
  118. #pull rtmp://rtmp3.example.com pageUrl=www.example.com/index.html; 
  119.  
  120.  
  121. # video on demand 
  122.  
  123. application vod { 
  124.  
  125. play /var/flvs; 
  126.  
  127.  
  128. application vod2 { 
  129.  
  130. play /var/mp4s; 
  131.  
  132.  
  133. # Many publishers, many subscribers 
  134.  
  135. # no checks, no recording 
  136.  
  137. application videochat { 
  138.  
  139. live on; 
  140.  
  141. # The following notifications receive all 
  142.  
  143. # the session variables as well as 
  144.  
  145. # particular call arguments in HTTP POST 
  146.  
  147. # request 
  148.  
  149. # Make HTTP request & use HTTP retcode 
  150.  
  151. # to decide whether to allow publishing 
  152.  
  153. # from this connection or not 
  154.  
  155. on_publish http://localhost:8080/publish; 
  156.  
  157. # Same with playing 
  158.  
  159. on_play http://localhost:8080/play; 
  160.  
  161. # Publish/play end (repeats on disconnect) 
  162.  
  163. on_done http://localhost:8080/done; 
  164.  
  165. # All above mentioned notifications receive 
  166.  
  167. # standard connect() arguments as well as 
  168.  
  169. # play/publish ones. If any arguments are sent 
  170.  
  171. # with GET-style syntax to play & publish 
  172.  
  173. # these are also included. 
  174.  
  175. # Example URL: 
  176.  
  177. #   rtmp://localhost/myapp/mystream?a=b&c=d 
  178.  
  179. # record 10 video keyframes (no audio) every 2 minutes 
  180.  
  181. record keyframes; 
  182.  
  183. record_path /var/vc; 
  184.  
  185. record_max_frames 10; 
  186.  
  187. record_interval 2m; 
  188.  
  189. # Async notify about an flv recorded 
  190.  
  191. on_record_done http://localhost:8080/record_done; 
  192.  
  193.  
  194. # HLS 
  195.  
  196. # HLS requires libavformat & should be configured as a separate 
  197.  
  198. # NGINX module in addition to nginx-rtmp-module: 
  199.  
  200. # ./configure … –add-module=/path/to/nginx-rtmp-module/hls … 
  201.  
  202. # For HLS to work please create a directory in tmpfs (/tmp/app here) 
  203.  
  204. # for the fragments. The directory contents is served via HTTP (see 
  205.  
  206. # http{} section in config) 
  207.  
  208.  
  209. # Incoming stream must be in H264/AAC/MP3. For iPhones use baseline H264 
  210.  
  211. # profile (see ffmpeg example). 
  212.  
  213. # This example creates RTMP stream from movie ready for HLS: 
  214.  
  215.  
  216. # ffmpeg -loglevel verbose -re -i movie.avi  -vcodec libx264 
  217.  
  218. #    -vprofile baseline -acodec libmp3lame -ar 44100 -ac 1 
  219.  
  220. #    -f flv rtmp://localhost:1935/hls/movie 
  221.  
  222.  
  223. # If you need to transcode live stream use ‘exec’ feature. 
  224.  
  225.  
  226. application hls { 
  227.  
  228. hls on; 
  229.  
  230. hls_path /var/app; 
  231.  
  232. hls_fragment 5s; 
  233.  
  234.  
  235.  
  236.  
  237. # HTTP can be used for accessing RTMP stats 
  238.  
  239. http { 
  240.  
  241. server { 
  242.  
  243. listen      8080; 
  244.  
  245. # This URL provides RTMP statistics in XML 
  246.  
  247. location /stat { 
  248.  
  249. rtmp_stat all; 
  250.  
  251. # Use this stylesheet to view XML as web page 
  252.  
  253. # in browser 
  254.  
  255. rtmp_stat_stylesheet stat.xsl; 
  256.  
  257.  
  258. location /stat.xsl { 
  259. # XML stylesheet to view RTMP stats. 
  260. # Copy stat.xsl wherever you want 
  261. # and put the full directory path here 
  262. root /path/to/stat.xsl/; 
  263. location /hls { 
  264. # Serve HLS fragments 
  265. alias /var/app; 

热门文章推荐

请稍候...

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

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