node搭建直播服务器流

首要设置OBS

node搭建直播服务器流_第1张图片

第一步:创建node项目  安装模块

  1. 模块地址 https://github.com/illuspas/Node-Media-Server
  2. 安装  cnpm install node-media-server  --save
  3. 引入代码  使用node   xxx.js启动  
  4. const NodeMediaServer = require('node-media-server');
    
    const config = {
      rtmp: {
        port: 1935,
        chunk_size: 60000,
        gop_cache: true,
        ping: 30,
        ping_timeout: 60
      },
      http: {
        port: 8000,
        allow_origin: '*'
      }
    };
    
    var nms = new NodeMediaServer(config)
    nms.run();
  5. 新建拉流h5.html
  6. 
    
    	
    		
    		
    	
    	
    		
    		
    		
    		
    	
    
    
  7. 切记

    RTMP

    rtmp://localhost/live/STREAM_NAME(你的加密码)
    

    http-flv

    http://localhost:8000/live/STREAM_NAME.flv

你可能感兴趣的:(vue基础知识总结)