-
-
Notifications
You must be signed in to change notification settings - Fork 582
Closed
Labels
Description
Certain clients are failing to connect to the stream, while others are able to connect just fine. I have tested on multiple PCs and mobile devices, and cannot isolate a common factor to either it working or not working.
Client error:
flv.js:11403 [IOController] > Loader error, code = 500, msg = Internal Server Error
e @ flv.js:11403
flv.js:11403 [TransmuxingController] > IOException: type = HttpStatusCodeInvalid, code = 500, msg = Internal Server Error
e @ flv.js:11403
flv.js:1226 Uncaught (in promise) Error: Uncaught, unspecified "error" event. (NetworkError)
at EventEmitter.emit (flv.js:1226)
at EventEmitter.<anonymous> (flv.js:8961)
at EventEmitter.emit (flv.js:1248)
at flv.js:3155
And this error on the nginx error.log:
2019/01/31 18:01:55 [error] 12946#0: *972 flv live: failed to find configured port: '1935', client: <ip>, server: rachni.com, request: "GET /live?port=1935&app=live&stream=Len HTTP/1.1", host: "stream.rachni.com", referrer: "https://stream.rachni.com/dev/player.test.html"
nginx 1.15.8
http conf:
# HTTP-FLV location
location /live {
flv_live on;
chunked_transfer_encoding on;
}
rtmp conf:
rtmp {
server {
listen [::]:1935 ipv6only=off;
chunk_size 8192;
ping 3s;
ping_timeout 12s;
notify_method get;
idle_streams off;
drop_idle_publisher 10s;
play_restart on;
application live {
live on;
wait_key on;
wait_video on;
meta copy;
notify_method get;
}
}
Appears to be similar to #20
Please let me know what additional information you need.