camera.activeFormat未获得应用

问题描述 投票:1回答:1

我们正试图在我们的iOS应用程序(用Objective-C编写)中设置一个特定的相机帧分辨率,这在AVCaptureSessionPreset中没有定义。使用以下代码,我们希望将框架尺寸设置为特定宽度:

  for ( AVCaptureDeviceFormat *format in [self.camera formats] ) {
    NSLog(@"%@", format);
    CMVideoDimensions dim = CMVideoFormatDescriptionGetDimensions(format.formatDescription);
    if(dim.width == 3264){
      if ([ self.camera lockForConfiguration:NULL] == YES) {
        self.camera.activeFormat = format;
        [ self.camera unlockForConfiguration];
      }

    }
  }

但是分辨率设置为1920x1080 - 这是默认值,我猜?是否有特定的顺序来定义何时调用摄像头配置?

ios objective-c camera avcapturesession avcapturedevice
1个回答
1
投票

您需要将AVCaptureSession的sessionPreset属性设置为AVCaptureSessionPresetInputPriority。 https://developer.apple.com/documentation/avfoundation/avcapturesessionpresetinputpriority?language=objc

© www.soinside.com 2019 - 2024. All rights reserved.