Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm implementing a software to caputre video from webcam. I've seen MyRecorder sample in Apple Dev and it works fine.

I've tried to add a button to take a snapshot from video with this code:

- (IBAction)addFrame:(id)sender
{
    CVImageBufferRef imageBuffer;
    @synchronized (self) {
        imageBuffer = CVBufferRetain(mCurrentImageBuffer);
    }
    if (imageBuffer) { 
    [ bla bla bla ] 	
    }
}

but mCurrentImageBuffer is always empty. How can I take current frame from my webcam and put on mCurrentImageBuffer?

I've tried to use

(void)captureOutput:(QTCaptureOutput *)captureOutput 
    				didOutputVideoFrame:(CVImageBufferRef)videoFrame 
    				withSampleBuffer:(QTSampleBuffer *)sampleBuffer 
    				fromConnection:(QTCaptureConnection *)connection
{
    CVImageBufferRef imageBufferToRelease;

    CVBufferRetain(videoFrame);

    @synchronized (self) {
        imageBufferToRelease = mCurrentImageBuffer;
        mCurrentImageBuffer = videoFrame;
    }
    CVBufferRelease(imageBufferToRelease);  
}

but it's never called. How can I decide when call captureOutput delegate method? Any idea?

thanks, Andrea

share|improve this question
I've moved the QTCaptureDecompressedVideoOutput definition code in the end of video initialization and now mCurrentImageBuffer isn't empty, but no video are saved on disk – Andrea Girardi Oct 3 '09 at 14:49
The imagesnap open-source project is an objective-C command-line tool for taking webcam pics. – Stan James Dec 12 '12 at 7:02

2 Answers

up vote 2 down vote accepted

It looks like you're trying to use the QTKit Capture API for capturing video from your webcam. The MyRecorder sample application is pretty much the simplest functioning video capture program you can make using this API. It wasn't clear from your description, but you need to make sure that you follow their example, and initialize your video session in the same manner as they do in the -awakeFromNib method within MyRecorderController. If you don't, you won't get any video being captured.

As far as the method you're trying to use, -captureOutput:didOutputVideoFrame:withSampleBuffer:fromConnection: is a delegate method for QTCaptureDecompressedVideoOutput. An instance of this class is not present in the MyRecorder sample, because that sample only records compressed video to disk. To use this, you'll need to create an instance of QTCaptureDecompressedVideoOutput, attach it to your QTCaptureSession using -addOutput:error:, and set the delegate for the QTCaptureDecompressedVideoOutput instance to be your class.

For more information on how QTKit handles this sort of thing, you can consult the QTKit Capture section of the QTKit Application Programming Guide.

share|improve this answer
I've declared QTCaptureDecompressedVideoOutput on -awakeFromNib method and I've added it to QTCaptureSession but, in this case, image capture works fine and video isn't save on disk. – Andrea Girardi Oct 4 '09 at 11:02
The problem is that I've 2 type of addOutput: QTCaptureDecompressedVideoOutput to save image and mCaptureMovieFileOutput to store video. Is possible to have 2 output or have I to define 2 QTCaptureSession? – Andrea Girardi Oct 4 '09 at 11:13
You should be able to have two outputs with a single video input. Apple shows a flowchart for this in the QTKit guide linked above. How processor intensive is your image capture? Maybe it's not returning from the delegate method fast enough to allow the video recording to take place. By default, the video capture uses H.264 encoding, which is pretty heavy. You could try setting the video to QTCompressionOptions240SizeMPEG4Video and see what happens. – Brad Larson Oct 5 '09 at 12:57
I've modified the initialization -awakeFromNib procedure and now works with 2 outputs. I've implemented delegate for QTCaptureDecompressedVideoOutput but processor is 60 / 70 % because for every frame delegate method is called. But the result is acceptable. Is possible to call delegate only when capture key has been pressed? – Andrea Girardi Oct 5 '09 at 19:34
Why not use a boolean instance variable that gets set to YES when you hit the capture key? You could check this instance variable in the delegate method and only run your capture code if the variable is set to YES. – Brad Larson Oct 6 '09 at 0:53

I've tried to use

- (void)captureOutput:(QTCaptureOutput *)captureOutput 
                                didOutputVideoFrame:(CVImageBufferRef)videoFrame 
                                withSampleBuffer:(QTSampleBuffer *)sampleBuffer 
                                fromConnection:(QTCaptureConnection *)connection

but it's never called.

Is the object implementing this method the capture output object's delegate?

share|improve this answer
1  
This is my problem, I don't understand well this step. – Andrea Girardi Oct 4 '09 at 10:36
You need to be the capture output object's delegate. See developer.apple.com/mac/library/documentation/General/… and the setDelegate: method of the capture output object. – Peter Hosey Oct 4 '09 at 18:37
Perfect, I've seen on Apple sample (very usefull) thanks! – Andrea Girardi Oct 5 '09 at 7:55
1  
In my case it was that I'd forgotten to create the QTCaptureDecompressedVideoOutput object before calling setDelegate:. Like this:videOutput = [[QTCaptureDecompressedVideoOutput alloc] init]; [videOutput setDelegate:self]; – Stan James Mar 14 at 22:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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