如果我在nginx.conf中使用下面的代码,你能告诉我什么是我stream的URL
rtmp { server { listen 1935; # Listen on standard RTMP port chunk_size 4000; application show { live on; pull rtmp://THIS_IS_SOME_STREAM live=1; hls on; hls_path /mnt/hls/; hls_fragment 3; hls_playlist_length 60; } } }
我试过这个,但它没有工作: rtmp://My_Server_Ip/show
只是试图做stream媒体的第一次。 遵循一些教程,但它看起来像我没有使用正确的RTMP URL。