RTMP服务器搭建
程序员文章站
2022-03-18 11:31:35
...
环境
#安装Nginx的编译环境gcc
yum install gcc-c++
#nginx的http模块使用pcre解析正则表达式所以安装perl兼容的正则表达式库
yum install -y pcre pcre-devel
#nginx使用zlib对http包的内容进行gzip
yum install -y zlib zlib-devel
#nginx不仅支持http协议,还支持https(即在ssl协议上传输http),如果使用了https,需要安装OpenSSL库
yum install -y openssl openssl-devel
下载Nginx、nginx-rtmp-module
# 下载nginx
wget http://nginx.org/download/nginx-1.15.3.tar.gz
# 解压
tar -zxvf nginx-1.15.3.tar.gz
# 下载 nginx-rtmp-module
git clone https://github.com/arut/nginx-rtmp-module
#
cd nginx-1.15.3
#
./configure --add-module="/root/nginx-rtmp-module"
#
make
#
make install
#
vim /usr/local/nginx/conf/nginx.conf
#
rtmp {
server {
listen 1935; #监听的端口
chunk_size 4000;
application tv_file {
live on; #开启实时
hls on; #开启hls
hls_path /usr/local/nginx/html/tv_file; #rtmp推流请求路径,文件存放路径
hls_fragment 5s; #每个TS文件包含5秒的视频内容
}
}
}
#
cd cd /usr/local/nginx/sbin
#
./nginx
OBS推流:
VLC 拉流
参考文献:https://blog.csdn.net/mxdzchallpp/article/details/86551564