srs 使用nginx反向代理解决chrome播放HLS的跨域问题

1:安装srs;

2:安装nginx:

     https://www.cnblogs.com/wyd168/p/6636529.html

3:配置srs

 修改conf/http.hls.conf

listen              1935;
max_connections     1000;
daemon              off;
srs_log_tank        console;
http_server {
    enabled         on;
    listen          8080;
    dir             ./objs/nginx/html;
}
vhost __defaultVhost__ {
    hls {
        enabled         on;
        hls_fragment    3;
        hls_window      5;
        hls_path        ./objs/nginx/html;
        hls_m3u8_file   [app]/[stream].m3u8;
        hls_ts_file     [app]/[stream]-[seq].ts;
    }
}

4:修改nginx配置

 修改conf/nginx_conf.default

    server {
        listen       80;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            root   html;
            index  index.html index.htm;
        proxy_pass http://localhost:8080;
        add_header Cache-COntrol no-cache;
        add_header Access-Control-Allow-Origin *;
        }

5:启动srs

    ./objs/srs -c conf/http.hls.conf

6:启动nginx

   cd /usr/local/nginx/

   sudo ./sbin/nginx -c conf/nginx_conf.default

7:obs直播推流,rtmp正常推流

8:chrome 播放器打开video.html 代码如下:

  
  
    
    video   
     
        
    
   
        


                
            

            
 

 

hls.min.js 

https://download.csdn.net/download/u014016672/10808469

你可能感兴趣的:(流媒体)