是否可以同时提供 serv hls 和 dash mpeg

is that possible to serv hls and dash mpeg both at a time

实际上我是Nginx RTMP 服务器的新手。我已经设置了我的 nginx.conf 文件来接受 hls 和 dash-mpeg。但现在的问题是我可以同时提供 hls 或 dash-mpeg 服务。所以现在我的问题是可以同时为两个不同的视频提供 hls 和 dash-mpeg 服务吗?我正在从 OBS Studio 流式传输视频。
这是我在 nginx.conf 文件

中的 MPEG 和 hls 代码
rtmp {
server {
    listen 1935; # Listen on standard RTMP port
    chunk_size 4000;

    application show {
        live on;
        # Turn on HLS
        hls on;
        hls_path /nginx/hls/;
        hls_fragment 3;
        hls_playlist_length 60;
        deny play all;
    }
    application dash {
            live on;
            dash on;
            dash_path /nginx/dash;

    }
}

}

谢谢你提前。

是的,您可以根据需要提供服务。它有 2 个选项(正如我尝试的那样) 1.可以使用OBS studio进行串流。要么 2、可以在终端中使用FFmpeg命令来实现。 我建议你使用 OBS studio 的两个终端或 2 windows 来实现它。但请确保您的网络足够强大,可以同时支持流式传输 2 个视频。尝试一下,让我们知道。我猜你需要在破折号配置中添加更多配置。有关更多详细信息,请参阅此页面。peer5.com,如果它正在工作,也请投赞成票;-)