nginx+obs搭建流媒体,实现直播

1.直播是现在最热门的,尤其是电竞的发展成功的带动的直播的发展,各种游戏直播月入XXX,经常听到的一句话:某主播XXX月入百万,不知道是真是假暂且不管,看看直播到底是怎么实现的,直播使用的是RTMP协议(实时消息传输协议),实现这个协议的方式有很多种,这里使用nginx(一个超级强大的服务器)的rtmp-moudle模块来实现。

我是在ubantu上面搭建的环境:

首先准备nginx安装包和nginx-rtmp-module模块的安装包

nginx安装包:http://nginx.org/,请自行下载

wget http://nginx.org/download/nginx-1.11.3.tar.gz

nginx-rtmp-module模块下载

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

下载完毕解压

tar -zxvf nginx-1.11.3.tar.gz

unzip master.zip(没有安装该软件包:sudo apt-get install unzip)

解压完毕进入nginx-1.11.3文件夹

./configure--add-module=../arut-nginx-rtmp-module-c0bf381

sudo make

sudo make install

安装完毕!

运行nginx:

sudo /usr/local/nginx/sbin/nginx

运行:ifconfig查看ubantu的ip地址:


打开浏览器输入:你本机的ip看到nginx的欢迎页面,说明安装成功,如图:


然后:

cd /usr/local/nginx/conf

nginx的配置文件可能没有修改的权限

修改权限:

sudo chmod 777conf/

编辑nginx.conf文件,我贴出整个配置文件:

[plain]   view plain  copy
  1. <span style="font-size:18px;">#user  nobody;  
  2. worker_processes  1;  
  3.   
  4. #error_log  logs/error.log;  
  5. #error_log  logs/error.log  notice;  
  6. #error_log  logs/error.log  info;  
  7.   
  8. #pid        logs/nginx.pid;  
  9.   
  10.   
  11. events {  
  12.     worker_connections  1024;  
  13. }  
  14.   
  15.   
  16. http {  
  17.     include       mime.types;  
  18.     default_type  application/octet-stream;  
  19.   
  20.     #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '  
  21.     #                  '$status $body_bytes_sent "$http_referer" '  
  22.     #                  '"$http_user_agent" "$http_x_forwarded_for"';  
  23.   
  24.     #access_log  logs/access.log  main;  
  25.   
  26.     sendfile        on;  
  27.     #tcp_nopush     on;  
  28.   
  29.     #keepalive_timeout  0;  
  30.     keepalive_timeout  65;  
  31.   
  32.     #gzip  on;  
  33.   
  34.     server {  
  35.         listen       80;  
  36.         server_name  localhost;  
  37.   
  38.         #charset koi8-r;  
  39.   
  40.         #access_log  logs/host.access.log  main;  
  41.   
  42.         location / {  
  43.             root   html;  
  44.             index  index.html index.htm;  
  45.         }  
  46.   
  47.         #error_page  404              /404.html;  
  48.   
  49.         # redirect server error pages to the static page /50x.html  
  50.         #  
  51.         error_page   500 502 503 504  /50x.html;  
  52.         location = /50x.html {  
  53.             root   html;  
  54.         }  
  55.   
  56.         # proxy the PHP scripts to Apache listening on 127.0.0.1:80  
  57.         #  
  58.         #location ~ \.php$ {  
  59.         #    proxy_pass   http://127.0.0.1;  
  60.         #}  
  61.   
  62.         # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000  
  63.         #  
  64.         #location ~ \.php$ {  
  65.         #    root           html;  
  66.         #    fastcgi_pass   127.0.0.1:9000;  
  67.         #    fastcgi_index  index.php;  
  68.         #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;  
  69.         #    include        fastcgi_params;  
  70.         #}  
  71.   
  72.         # deny access to .htaccess files, if Apache's document root  
  73.         # concurs with nginx's one  
  74.         #  
  75.         #location ~ /\.ht {  
  76.         #    deny  all;  
  77.         #}  
  78.     }  
  79.   
  80.   
  81.     # another virtual host using mix of IP-, name-, and port-based configuration  
  82.     #  
  83.     #server {  
  84.     #    listen       8000;  
  85.     #    listen       somename:8080;  
  86.     #    server_name  somename  alias  another.alias;  
  87.   
  88.     #    location / {  
  89.     #        root   html;  
  90.     #        index  index.html index.htm;  
  91.     #    }  
  92.     #}  
  93.   
  94.   
  95.     # HTTPS server  
  96.     #  
  97.     #server {  
  98.     #    listen       443 ssl;  
  99.     #    server_name  localhost;  
  100.   
  101.     #    ssl_certificate      cert.pem;  
  102.     #    ssl_certificate_key  cert.key;  
  103.   
  104.     #    ssl_session_cache    shared:SSL:1m;  
  105.     #    ssl_session_timeout  5m;  
  106.   
  107.     #    ssl_ciphers  HIGH:!aNULL:!MD5;  
  108.     #    ssl_prefer_server_ciphers  on;  
  109.   
  110.     #    location / {  
  111.     #        root   html;  
  112.     #        index  index.html index.htm;  
  113.     #    }  
  114.     #}  
  115.   
  116. }  
  117. rtmp {  
  118.         server {  
  119.                 listen 1935;  
  120.                 chunk_size 4096;  
  121.   
  122.                 application live {  
  123.                         live on;  
  124.                         record off;  
  125.                 }  
  126.         }  
  127.     }</span>  

加的配置就在最后,复制添加即可。

保存之后重启nginx:

sudo /usr/local/nginx/sbin/nginx -s stop

sudo /usr/local/nginx/sbin/nginx

没有出现错误,这时已经成功搭建好了rtmp流媒体,这时需要一个推流的客户端给服务器

这里选择OBS,比较出名的一个软件:下载地址:

https://obsproject.com/download#mp

自己下载安装

安装完毕配置obs





注意IP要该为自己的。

完毕之后还有做一个浏览器的展示:

建立play.PHP

[php]   view plain  copy
  1. <span style="font-size:18px;"><!DOCTYPE html>    
  2. <html>    
  3. <head>    
  4.  <title>jwplayer播放器测试</title>  
  5.  <meta http-equiv="Content-Type" content="text/html; charset=utf-8">  
  6.  <script type="text/javascript" src="scripts/jquery-1.8.3.min.js"></script>    
  7.  <script type="text/javascript" src="scripts/jwplayer.js"></script>    
  8. <!-- jwplayer播放器的key是在官方网站注册之后才会给的,没有这个key就不能使用播放器,下面是我申请的key -->    
  9.   <script type="text/javascript">jwplayer.key="W+FSSIJICMeqqi4MQCwmdLePq9iq8HQqiVT5dQ==";</script>    
  10. </head>    
  11. <body>    
  12.     
  13. <div id="container"></div>       
  14.     
  15. </body>    
  16. <script type="text/javascript">      
  17.     var temp = 1;    
  18.     $(function() {      
  19.     
  20.     
  21.   var playerInstance = jwplayer('container');    
  22.   //初始化视频    
  23.   playerInstance.setup({    
  24.     //视频文件来源    
  25.        file: 'rtmp://192.168.172.128/live/',  //这里的IP别忘记改成自己的  
  26.        //显示的背景图片    
  27.        image: 'scripts/bg.jpg',    
  28.          
  29.    });       
  30. });    
  31. </script>      
  32. </html>  </span>  
jwplayer包请在这里下载:http://download.csdn.net/detail/gaoxuaiguoyi/9300373

下载完毕直接放在目录下面就可以了:

访问:你的IP/play.php


到此实现的简单的直播。


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值