Hi,

I am new to Flex and I am currently developing a prototype webcam
recorder using Flex Builder 3. I'm having trouble recording the actual
video.
I can access the webcam by attaching it to a VideoDisplay.

var camera:Camera = Camera.getCamera();
    if (camera) {
        videoDisplay.attachCamera(camera);
    } else {
        Alert.show("You don't seem to have a camera.");
    }

However I do not know how to record the video being captured. Also, I
would like to store the videos on my localhost.

Any help will be appreciated.

Thanks.


Reply via email to