I have just setup HLS Streaming server and theres about a 1m 20s delay is there any way I could decrease this alot, Its only an audio stream so if video quality is effected by reducing delay I don't mind atall.
# RTMP configuration
rtmp {
server {
listen 1935; # Listen on standard RTMP port
chunk_size 2000;
application show {
live on;
# Turn on HLS
hls on;
hls_path /nginx/hls/;
hls_fragment 3;
hls_playlist_length 60;
# disable consuming the stream from nginx as rtmp
deny play all;
}
}
}
Just a quick question, how have you tested this? What is the current upstream of the PC uploading the data? Have you tested this on the same connection as the stream? On a seperate connection? Perhaps a mobile device? I do know based on routing of the "good ole internet" that this can in fact cause latency.