为什么切换摄像头会将我的AVCaptureSession停止为MovieFileOutput?

时间:2015-05-13 13:53:54

标签: ios avfoundation avcapturesession avcapturemoviefileoutput

iOS documentation表示您可以在会话运行时添加和删除输入,例如在前后摄像头之间切换。

然而,当我尝试这个时,我的会话就会停止。我通过beginConfigurationcommitConfiguration电话锁定会话,如下所示:

- (void)switchCamera:(UIButton *)sender {

    dispatch_async([self sessionQueue], ^{

        AVCaptureSession *session = self.captureSession;
        [session beginConfiguration];

        AVCaptureInput *currentInput = self.currentCameraIsBack ? self.videoDeviceInputBack : self.videoDeviceInputFront;
        AVCaptureInput *newInput = self.currentCameraIsBack ? self.videoDeviceInputFront : self.videoDeviceInputBack;

        [session removeInput:currentInput];
        [session addInput:newInput];
        self.currentCameraIsBack = !self.currentCameraIsBack;

        [session setSessionPreset:AVCaptureSessionPresetMedium];
        [self setCameraOutputProperties];

        [session commitConfiguration];
    });
}

我正在输出AVCaptureMovieFileOutput。有什么我需要做的事情来配置这个会话,以便它可以切换吗?

(请注意this question中的OP正在尝试添加新输入而不删除旧输入,这不是问题所在。

1 个答案:

答案 0 :(得分:0)

事实证明,要执行此操作,您需要使用AVAssetWriter并使用生成的appendSampleBuffer:自行调用CMSampleBuffer,如下所示:

- (void)captureOutput:(AVCaptureOutput *)captureOutput didOutputSampleBuffer:(CMSampleBufferRef)sampleBuffer fromConnection:(AVCaptureConnection *)connection {

    if (self.recording && self.videoWriterInput.isReadyForMoreMediaData) {

        [self.videoWriterInput appendSampleBuffer:sampleBuffer];
    }
}