The Video frames (and audio) freeze frequently during video conferences. This happens
The Video frames (and audio) freeze frequently during video conferences. This happens even when both users have good connections (>1.5 MBPS up and down).
Question: are there any settings or parameters that should be adjusted client or server side? The following is the code snippet:
var live_mic:Microphone = Microphone. getEnhancedMicrophone();
live_mic.useEchoSuppression;
live_mic.useEchoSuppression;
var live_cam:Camera = Camera.get();
live_cam.setMode(320, 240, 15, false);
live_cam.setQuality(32768, 80);
live_cam.setKeyFrameInterval(30);
Then start the netstreams:
var out_ns:NetStream;
out_ns = new NetStream(nc);
out_ns.attachAudio(live_mic);
out_ns.attachVideo(live_cam);
out_ns.publish("ns_myStream", "live");
|