博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Linux上用nginx搭建RTMP服务器
阅读量:6395 次
发布时间:2019-06-23

本文共 1143 字,大约阅读时间需要 3 分钟。

参考文章:

我的环境ubuntu

1、 安装编译 nginx 所需要的库

sudo apt-get install build-essential libpcre3 libpcre3-dev libssl-dev
  • 1
  • 1

2、 下载 nginx-1.9.15.tar.gz

wget http://nginx.org/download/nginx-1.9.15.tar.gz
  • 1
  • 1

3、 下载 nginx-rtmp-module

wget https://github.com/arut/nginx-rtmp-module/archive/master.zip
  • 1
  • 1

4、解压

tar -zxvf nginx-1.9.15.tar.gzunzip master.zip cd nginx-1.9.15
  • 1
  • 2
  • 3
  • 1
  • 2
  • 3

5、编译

./configure --with-http_ssl_module --add-module=../nginx-rtmp-module-master make sudo make install
  • 1
  • 2
  • 3
  • 1
  • 2
  • 3

6、启动nginx,检测nginx是否能成功运行

sudo /usr/local/nginx/sbin/nginx
  • 1
  • 1

7、配置nginx使用RTMP, /usr/local/nginx/conf/nginx.conf

rtmp {        server {                listen 1935;                chunk_size 4096;                application live {                        live on; record off; } } }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

8、重启nginx服务器

sudo /usr/local/nginx/sbin/nginx -s stopsudo /usr/local/nginx/sbin/nginx
  • 1
  • 2
  • 1
  • 2

9、测试 

OBS 直播设置

Streaming Service: CustomServer: rtmp://
/live //例如:rtmp://192.168.18.116/live Play Path/Stream Key: test
  • 1
  • 2
  • 3
  • 1
  • 2
  • 3

VLC 播放设置

Network Stream URL: rtmp://%your_server_ip%/live/test例如:rtmp://192.168.18.116/live/test

转载地址:http://ihlha.baihongyu.com/

你可能感兴趣的文章
Gradle -- buildScript块与allprojects块及根级别的repositories区别
查看>>
远程SSH连接服务与基本排错
查看>>
Objective-C学习笔记(十九)——对象方法和类方法的相互调用
查看>>
win10 WmiPrvSE.exe WMI Provider 占用CPU过高的问题
查看>>
hdu 4945 2048(DP)
查看>>
论文阅读:CNN-RNN: A Unified Framework for Multi-label Image Classification
查看>>
开篇有益-解析微软微服务架构eShopOnContainers(一)
查看>>
IE新发现
查看>>
quick check
查看>>
Debug时含有的子元素,在代码里获取不到的问题
查看>>
UVA 11020 - Efficient Solutions(set)
查看>>
RStudio版本号管理 整合Git
查看>>
使用 PHPMailer 发送邮件
查看>>
文件系统管理 之 Linux 创建文件系统及挂载文件系统流程详解
查看>>
CSS选择器学习小结
查看>>
什么叫贸工技发展模式?什么叫技工贸发展模式?
查看>>
MyEclipse for Spring 10.0: GWT 2.1 and Spring Scaffolding
查看>>
水木-搜索引擎技术版
查看>>
yiStack平台维护
查看>>
oracle11g程序调优纪实
查看>>