通过 nginx 和 hls 流式传输无法完全正常工作

时间:2021-04-12 09:19:11

标签: http nginx http-live-streaming rtmp hlsl

所以我已经在 azure 上配置了我的 nginx 服务器,我实际上可以连接到它并进行流式传输,但是有一个问题,我的 hls 目录中没有 .m3u3 文件,我正在流式传输到这里通过OBS这个服务器是我nginx的配置

我发现了一些有这个错误的旧线程,但我已经添加了 root 用户;归档,仍然没有

人知道为什么它不工作


user root;
worker_processes auto; events {
    worker_connections 1024;
}
# RTMP configuration
rtmp {
    server {
        listen 1935 ; # Listen on standard RTMP port
        chunk_size 4000;
        application show {
            live on;
            # Turn on HLS
            hls on;
            hls_path /mnt/hls/;
            hls_fragment 3;
            hls_playlist_length 60;
            # disable consuming the stream from nginx as rtmp
            deny play all;
        }
    }
}
http {
    sendfile off;
    tcp_nopush on;
    # aio on;
    directio 512;
    default_type application/octet-stream;
    server {
        listen 8080;
        location / {
            # Disable cache
            add_header 'Cache-Control' 'no-cache';
            # CORS setup
            add_header 'Access-Control-Allow-Origin' '*' always;
            add_header 'Access-Control-Expose-Headers' 'Content-Length';
            # allow CORS preflight requests
            if ($request_method = 'OPTIONS') {
                add_header 'Access-Control-Allow-Origin' '*';
                add_header 'Access-Control-Max-Age' 1728000;
                add_header 'Content-Type' 'text/plain charset=UTF-8';
                add_header 'Content-Length' 0;
                return 204;
            }
            types {
                application/dash+xml mpd;
                application/vnd.apple.mpegurl m3u8;
                video/mp2t ts;
            }
            root /nginx/;
        }
    }
}



0 个答案:

没有答案