How to I stop freezing of video stream?
the video frames (and audio) freeze during video conferences. happens when both users have connections (>1.5 mbps , down).
question: there settings or parameters should adjusted client or server side? following 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 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");
More discussions in Flex SDK
adobe
Comments
Post a Comment