利用NGINX搭建部署直播流媒体服务器

利用NGINX搭建部署直播流媒体服务器
文章图片

直播如今是一个老生常谈的问题,怎么用于直播,大多数人只晓得,大佬某平台直播软件,点击开始即可直播。那么如何来搭建一个简易的直播平台呢?仅仅是有直播功能,没有涉及转码以及播放软件。

安装nginx以及rtmp模块root@cby:~# apt install nginx root@cby:~# apt install libnginx-mod-rtmp修改配置以支持rtmp root@cby:~# vim /etc/nginx/nginx.conf rtmp { server { listen 1935; chunk_size 4096; application live { live on; } } }检查是否有报错 root@cby:~# nginx -t nginx: the configuration file /etc/nginx/nginx.conf syntax is ok nginx: configuration file /etc/nginx/nginx.conf test is successful root@cby:~# 重启nginx root@cby:~# systemctl restart nginx

使用obs直播工具进行推流操作
rtmp://<你的域名或者IP>:1935/live
利用NGINX搭建部署直播流媒体服务器
文章图片

使用vlc拉流播放
利用NGINX搭建部署直播流媒体服务器
文章图片

查看效果
利用NGINX搭建部署直播流媒体服务器
文章图片

https://www.oiox.cn/
https://www.chenby.cn/
https://cby-chen.github.io/
https://weibo.com/u/5982474121
https://blog.csdn.net/qq_3392...
https://my.oschina.net/u/3981543
【利用NGINX搭建部署直播流媒体服务器】https://www.zhihu.com/people/...
https://segmentfault.com/u/hp...
https://juejin.cn/user/331578...
https://space.bilibili.com/35...
https://cloud.tencent.com/dev...
https://www.jianshu.com/u/0f8...
https://www.toutiao.com/c/use...
CSDN、GitHub、知乎、开源中国、思否、掘金、简书、腾讯云、哔哩哔哩、今日头条、新浪微博、个人博客、全网可搜《小陈运维》

    推荐阅读