Problem with zd soft screen recorder

Max

Administrator
Staff member
It was disconnected by keep alive.

Try to set
Code:
keep_alive.algorithm=INTERNAL
in /usr/local/FlashphonerWebCallServer/conf/server.properties
then do wcs restart to apply changes:
Code:
service webcallserver restart
If it does not work, try to disable keep alive for RTMP:
Code:
keep_alive.enabled=websocket
Here we preserve keep alive for websocket only, but disable for RTMP (full list is keep_alive.enabled=websocket,rmp,rtmfp)

If it does not work, try to disable keep alive at all
Code:
keep_alive.algorithm=NONE
 

Max

Administrator
Staff member
Code:
keep_alive.algorithm=NONE
This setting is a workaround.
Because if you disable keep alives at all, then some players' connections will not be released properly and it may cause a leak.
Code:
keep_alive.enabled=websocket
Does this setting work for you?
 

Taihung

New Member
Only
keep_alive.algorithm=NONE
solve our problem. We will use the sample player mainly. Do you think this will cause the leak or not ?
 

Max

Administrator
Staff member
This will cause leak in cases when user lost network connection. For example if network cable is unplugged.
For normal disconnects when browser is closed by user it should not cause leaks.
We will test this with other encoders: ffmpeg, FMLE, Wirecast and check how keep alive works with such encoders.
 
Top