Display latest frames after network slowness

CY123

New Member
Hi,
I am using Flashphoner library 5.28 and displaying video using Chrome on Windows. However, I notice that whenever there is network problem, and data comes in 1 or 2 secs later, my video will accummulate and it gets slower and slower. For example, unstable Wifi, 3G or 4G connectiions.
I need my video to be real time. How can I always display the latest frames and skip delayed frames after intermittent network issues? Is there any settings that I can set?

Thank you.
 

Max

Administrator
Staff member
Hello,

Try to limit maximum bitrate using server settings, e.g. to 1Mbps:
Code:
webrtc_cc_max_bitrate=1000000
webrtc_sdp_max_bitrate_bps=1000000
(or lower if it would be necessary)
Client-side constraints in Media Devices demo example (https://WCS:8444/client2/examples/demo/streaming/media_devices_manager/media_device_manager.html) can be used to see which bitrate would be acceptable. There are also bitrate charts in the example: to enable, add these settings on the server
Code:
inbound_video_rate_stat_send_interval=1
outbound_video_rate_stat_send_interval=1
 
Top