我想检查用户的iPhone是否支持全高清视频捕获。我发现,我应该问AV session ,如果

avSession = [[AVCaptureSession alloc] init];
    [avSession beginConfiguration];
    if ([avSession canSetSessionPreset:AVCaptureSessionPreset1920x1080]) {
        avSession.sessionPreset = AVCaptureSessionPreset1920x1080;
        NSLog(@"FULLHD");
    } else {
        avSession.sessionPreset = AVCaptureSessionPreset1280x720;
        NSLog(@"HDREADY");
    }
    [avSession commitConfiguration];

这在iPhone 5(确实支持全高清捕获)上工作正常,但在iPhone 4上也尝试设置预设,但显然失败。我究竟做错了什么?

提前致谢,
马蒂亚斯

最佳答案

在向捕获 session 添加输入之后,您是否调用canSetSettingPreset?

[captureSession addInput:captureInput]; // <--- you should add an input before canSetSessionPreset
[captureSession addOutput:captureOutput];


if( [captureSession canSetSessionPreset:AVCaptureSessionPreset1280x720] == YES ) {
    captureSession.sessionPreset = AVCaptureSessionPresetiFrame1280x720;
} else {
    captureSession.sessionPreset = AVCaptureSessionPreset640x480;
}

07-27 19:28