IT在线课程程序员看场电影

使用nginx-rtmp-module搭建直播流媒体服务器

2018-06-03  本文已影响1250人  cp3_1dbc
  1. 先下载nginx-rtmp-module
git clone https://github.com/arut/nginx-rtmp-module.git
  1. 安装nginx
    nginx的官方网站为:http://nginx.org/en/download.html
https://blog.csdn.net/z920954494/article/details/52132125
wget http://nginx.org/download/nginx-1.8.1.tar.gz 
tar -zxvf nginx-1.8.1.tar.gz 
cd nginx-1.8.1 
./configure --prefix=/usr/local/nginx  --add-module=../nginx-rtmp-module  --with-http_ssl_module   
make && make install
  1. 搭建点播服务
rtmp {                #RTMP服务
    server {
        listen 1935;  #//服务端口
        chunk_size 4096;   #//数据传输块的大小

        application vod {
                play /home/chris/video; #//视频文件存放位置。
        }
}
  1. 搭建直播服务-rtmp拉流
rtmp { 
        ...
        application live { #第一处添加的直播字段
                live on;
                pull rtmp://live.hkstv.hk.lxdns.com/live/hks; #如果懒得推流,那可以用这个,香港卫视的直播推流
        }
        ...
}

这里直接使用了现成的流 rtmp://live.hkstv.hk.lxdns.com/live/hks,你也可以用obs等工具去自己推流

  1. 搭建直播服务-hls拉流
    hls协议是苹果公司推出的一种基于http的协议,这篇文章对hls协议介绍的很到位 https://blog.csdn.net/weiyuefei/article/details/70257616
rtmp { 
        ...
        application live_hls {
                live on;
                hls on;
                hls_path /home/chris/video/hls1;
                hls_fragment 5s;
        }
        ...
}
http://localhost:80/live_hls/video/index.m3u8

播放效果


6.png

到这里,一个简单的直播流媒体服务器就搭建好了。

上一篇下一篇

猜你喜欢

热点阅读