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);
link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

This is happening due to your SetQuality settings, most likely. According to the Adobe Documentation for this, Flash will reduce quality as necessary to meet your bandwidth requirements. Due to the fact that your bandwidth setting is below the default (which is 16384; 50000/8 = 6250), Flash is probably automatically reducing the quality of the stream to fit your bandwidth limitations.

Try upping the bandwidth settings, see if that doesn't help you. Alternatively, you could set a minimum quality, but make sure you don't hamstring your feed by setting both to very restrictive values.

Good luck.

link|improve this answer
Maybe my calculations are wrong, but isn't 50000/8 = 500Kbps? Which I would think would be plenty bandwidth to stream live video. – zLan Jan 31 at 19:51
50000 / 8 = 6250 – The_asMan Jan 31 at 19:58
How can I tell my camera to only send a max of 500Kbps? – zLan Jan 31 at 20:01
@zLan - bandwidth is measured in bytes per second, not kilobytes. Thus, your throughput is only 6k per second. Try using the default - 16384 bytes, or 16 kilobytes - and see if your quality increases. – lunchmeat317 Jan 31 at 21:29
@zLan Edit: (You can always try setting it to a very high value - 16777216, for instance, or 16 megs per second.) – lunchmeat317 Jan 31 at 21:36
show 2 more comments
feedback

Change your quality from zero to a value closer to 100.

link|improve this answer
Really choppy. I think that's because it's not sending all the frames. – zLan Jan 31 at 19:46
I think messing with your camera.setQuality() and finding the right balance is the key. I've never seen really good quality from webcams myself, let us know if you get it looking great or not. – ToddBFisher Jan 31 at 20:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.