nginx实现obs推流
一、准备软件
nginx:1.20.2
nginx-rtmp-module:1.2.2
openssl:1_1_1h
二、解压软件源文件进入nginx解压目录执行以下命令安装nginx
./configure --add-module=../nginx-rtmp-module-1.2.2 --without-http_rewrite_module --with-openssl=../openssl-OpenSSL_1_1_1h
三、修改nginx配置文件
默认配置文件路径 /usr/local/nginx/conf/nginx.conf
vim /usr/local/nginx/conf/nginx.conf
添加以下配置信息
rtmp { server { listen 1935; chunk_size 4000; application vod{ play ./vod; #视频文件存放位置 } application live { live on; hls on; hls_path /usr/local/nginx/html/hls;
# 视频分片大小 hls_fragment 1s;
# 视频缓存时长 hls_playlist_length 1s; } } }
四、在/usr/local/nginx/html下新建目录hls存储视频流缓存
mkdir /usr/local/nginx/html/hls
五、启动nginx
进入/usr/local/nginx/sbin 输入以下命令启动nginx
./nginx
六、配置obs推流地址
- 服务选择自定义
- 地址选择你搭建nginx的地址
- 推流码填写自己指定唯一字符串或数字
七、开启obs推流使用vlc查看推流信息
浏览地址填写obs的推流地址后面加上/{推流码}参考图片中底部的地址