OBS & Nginx rtmp - Black screen every 58 Seconds

BassJay

New Member
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;
}
}

}
 

BassJay

New Member
I'm sure no one will ever come across this again in the future but on the off chance....

My issue wasn't related to OBS or Nginx it was our signage software XIBO which had a default VLS stream duration set to 60 seconds....
 
Top