I'm using AS3 to live stream video, but whenever the webcam picks up movement the picture is pixelated. Does anyone know how I can get a better picture?
Here are my camera settings:
var bandwidth:int = 50000;
var quality:int = 0;
camera = Camera.getCamera();
camera.setQuality(bandwidth/8, quality);
camera.setMode(232,174,15);
ns.attachCamera(camera);
addChild(video);