iOS慢动作记录

时间:2015-01-21 02:56:33

标签: ios video recording slowmotion

我正在尝试制作自定义录像机iPhone应用程序,我需要支持240 fps。但是,当我将AVCaptureDevice设置为使用格式和activeVideoMaxFrameDuration时,整个视频视图就会被冻结。如果我使用60fps,120fps,一切正常,完全没有问题。

对于输出部分,我正在使用AVCaptureMovieFileOutput,如果重要的话,我还设置了曝光自动对焦模式。

[self.videoConnection setPreferredVideoStabilizationMode:AVCaptureVideoStabilizationModeOff];

if ([self.videoDevice isExposureModeSupported:AVCaptureExposureModeAutoExpose] &&
    [self.videoDevice lockForConfiguration:&error]) {

    [self.videoDevice setExposureMode:AVCaptureExposureModeContinuousAutoExposure];

    [self.videoDevice unlockForConfiguration];
}

if ([self.videoDevice isFocusModeSupported:AVCaptureFocusModeAutoFocus] &&
    [self.videoDevice lockForConfiguration:&error]) {

    [self.videoDevice setFocusMode:AVCaptureFocusModeContinuousAutoFocus];

    [self.videoDevice unlockForConfiguration];

}

dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.5 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{

    [self tapInView:nil];

});

1 个答案:

答案 0 :(得分:0)

解决方案与自动对焦和曝光有关。当设备的相机处于120 / 240fps模式时​​,我们需要禁用手动对焦和曝光,但仍然会保持自动对焦和自动曝光。这样可以防止相机冻结