nginx-rtmp-module
- 下载nginx-rtmp-module
git clone https://gitee.com/mirrors/nginx-rtmp-module.git - 下载nginx
http://nginx.org/en/download.html
http://nginx.org/download/nginx-1.16.1.tar.gz - 安装库 pcre zlib openssl-devel
sudo apt install zlib1g-dev libssl1.0-dev - 配置安装
./configure --add-module=…/nginx-rtmp-module
make -j4
sudo make install - 修改conf 默认位置/usr/local/nginx/conf/nginx.conf
rtmp {
server {
listen 1935;
chunk_size 4000;
# Transcoding (ffmpeg needed)
application webcam {
# enable live streaming
live on;
# Stream from webcam
}
}
}
来源:CSDN
作者:greatyoulv
链接:https://blog.csdn.net/greatyoulv/article/details/104424255