Hi All,
This is all very outside of my expertise but I've been forced to run a HLS live stream to our display signage.
I've used OBS to stream to NGINX with the below config and it works brilliantly except for a second long black screen every 58'ish seconds. Does anyone have any ideas what might be causing it?
rtmp {
server {
listen 1935; #listen port
chunk_size 4096;
application hlslive { #rtmp push stream request path
live on;
hls on;
hls_path /usr/share/nginx/html/hlslive/test;
hls_fragment 3s;
hls_playlist_length 18s;
}
}
}
This is all very outside of my expertise but I've been forced to run a HLS live stream to our display signage.
I've used OBS to stream to NGINX with the below config and it works brilliantly except for a second long black screen every 58'ish seconds. Does anyone have any ideas what might be causing it?
rtmp {
server {
listen 1935; #listen port
chunk_size 4096;
application hlslive { #rtmp push stream request path
live on;
hls on;
hls_path /usr/share/nginx/html/hlslive/test;
hls_fragment 3s;
hls_playlist_length 18s;
}
}
}