温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

nginx搭建直播

发布时间:2020-02-14 11:10:16 来源:网络 阅读:251 作者:lxhllf2005 栏目:开发技术
1.搭建nginx直播 2.使用安卓推流 3.使用html播放 环境虚拟机: ip: 192.168.1.181 设置: vi /etc/sysconfig/network-script/ifcfg-ens33 IPADDR=192.168.1.181 GATEWAY=192.168.1.1 NETMASK=255.255.255.0 DNS1=192.168.1.1

1.搭建nginx直播

1-1.安装编译所需软件:

yum -y install git pcre pcre-devel zlib zlib-devel gcc openssl openssl-devel wget zip unzip

1-2.安装编译所需软件:

wget http://nginx.org/download/nginx-1.14.1.tar.gz -P /usr/local/src/ git clone git://github.com/arut/nginx-rtmp-module.git /usr/local/src/nginx-rtmp-module tar -zxvf /usr/local/src/nginx-1.14.1.tar.gz -C /usr/local/src/ cd /usr/local/src/nginx-1.14.1/ ./configure --with-http_ssl_module --add-module=../nginx-rtmp-module make && make install

1-3.启动nginx:

/usr/local/nginx/sbin/nginx 测试: 浏览器访问:http://192.168.1.181

1-4.配置nginx: /usr/local/nginx/nginx.conf

http { .... server { listen 80; .... # rtmp stat location /stat { rtmp_stat all; rtmp_stat_stylesheet stat.xsl; } location /stat.xsl { # you can move stat.xsl to a different location root /usr/build/nginx-rtmp-module; } # rtmp control location /control { rtmp_control all; } error_page 500 502 503 504 /50x.html; location = /50x.html { root html; } } } rtmp { server { listen 1935; ping 30s; notify_method get; application myapp { live on; } } }

2.使用安卓推流

下载推流app,名字叫: 【i直播】

3.使用html播放

拉流地址: rtmp://192.168.1.181/myapp/mystream 播放使用: ckplayer 本地搭建web服务,将代码部署上去: 

ckplayer下载地址

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI