Nginx RTMP 流式传输未到达 RTMP 端点

Nginx RTMP streaming is not reaching the RTMP endpoint

我正在尝试使用 nginx-rtmp-module following the examples 将 RTMP 流从我的电脑重定向到 Ngninx 以将流重定向到 Azure 媒体服务实时事件。但它不会检测到编码器。我正在使用以下 nginx.conf:

events {}
rtmp {
    server {
        listen 1935;
        chunk_size 4096;

        application live {
            live on;
            record off;
            push rtmp://d-myamsacc-usct.channel.media.azure.net:1935/live/x4t/x4t;
        }
    }
}

我的 OBS 配置为使用流密钥“测试”流式传输到 rtmp://191.123.1.72/live 并使用本地 VLC 如果我使用 rtmp://191.123.1.72/live/test.

推送 URL 应该如下所示。它对我有用。

application live {
        live on;
        record off;
        push rtmp://d-myamsacc-usct.channel.media.azure.net:1935 app=live/x4t/x4t;
}

我的样本 url 是 push rtmp://p***2-p**imediaservices-usso.channel.media.azure.net:1935 app=live/3b5e8425**********50449d57d379d;

更多详情,您可以see answer in this post