iPhone 捕获会话:设置自定义帧率
iPhone capture session: Set custom frame-rate
我已经设置了一个 captureSession,现在正尝试将帧速率设置为 60。我使用的是 iPhone 12 Pro Max。
我正在尝试设置帧速率:
videoDevice?.activeVideoMinFrameDuration = CMTimeMake(value: 1, timescale: 60)
然而,打印我的 .activeFormat 告诉我我的 iPhone 只支持 30 fps。
我需要 60 fps 来匹配我的机器学习模型的帧速率。
配置:
- 内置广角相机,
- 视频,
- 靠后的位置,
- 横向右方向。
我在这个枚举中没有任何相机可以让我超过 30 fps。因此,我创建了 videoDevice 对象:
let videoDevice = AVCaptureDevice.default(.builtInWideAngleCamera,
for: .video,
position: .back)
我做错了什么?
谢谢
videoDevice.activeFormat
只是当前格式。 videoDevice.formats
包含所有可能的格式。
我的报告有许多格式可以达到 60fps,例如
<AVCaptureDeviceFormat: 0x28337d7c0 'vide'/'420f' 1280x 720, { 1- 60 fps}, HRSI:2112x1188, fov:70.291, binned, supports vis, max zoom:24.00 (upscales @1.50), AF System:1, ISO:33.0-3168.0, SS:0.000015-1.000000, supports wide color, supports multicam>
...
所以选择最适合您的格式,然后将其设为您的 activeFormat
并设置所需的帧持续时间,如下所示:
try! videoDevice.lockForConfiguration()
videoDevice.activeFormat = my60FPSFormat
videoDevice.activeVideoMinFrameDuration = CMTime(value: 1, timescale: 60)
videoDevice.activeVideoMaxFrameDuration = CMTime(value: 1, timescale: 60)
videoDevice.unlockForConfiguration()
谢谢,这回答了我的问题!:)
对于仍然想知道下面是我使用的代码的人:
// Instantiate the video device: wide angle camera, back position
let videoDevice = AVCaptureDevice.default(.builtInWideAngleCamera,
for: .video,
position: .back)
// Set the frame rate to 60, as expected by the model
try! videoDevice?.lockForConfiguration()
videoDevice?.activeFormat = (videoDevice?.formats[30])!
videoDevice?.activeVideoMinFrameDuration = CMTimeMake(value: 1, timescale: 60)
videoDevice?.activeVideoMaxFrameDuration = CMTimeMake(value: 1, timescale: 60)
videoDevice?.unlockForConfiguration()
// Debug only
// print(videoDevice?.activeFormat)
但是,一定要添加一些错误handling:D
再次感谢。
我已经设置了一个 captureSession,现在正尝试将帧速率设置为 60。我使用的是 iPhone 12 Pro Max。
我正在尝试设置帧速率:
videoDevice?.activeVideoMinFrameDuration = CMTimeMake(value: 1, timescale: 60)
然而,打印我的 .activeFormat 告诉我我的 iPhone 只支持 30 fps。
我需要 60 fps 来匹配我的机器学习模型的帧速率。
配置:
- 内置广角相机,
- 视频,
- 靠后的位置,
- 横向右方向。
我在这个枚举中没有任何相机可以让我超过 30 fps。因此,我创建了 videoDevice 对象:
let videoDevice = AVCaptureDevice.default(.builtInWideAngleCamera,
for: .video,
position: .back)
我做错了什么?
谢谢
videoDevice.activeFormat
只是当前格式。 videoDevice.formats
包含所有可能的格式。
我的报告有许多格式可以达到 60fps,例如
<AVCaptureDeviceFormat: 0x28337d7c0 'vide'/'420f' 1280x 720, { 1- 60 fps}, HRSI:2112x1188, fov:70.291, binned, supports vis, max zoom:24.00 (upscales @1.50), AF System:1, ISO:33.0-3168.0, SS:0.000015-1.000000, supports wide color, supports multicam>
...
所以选择最适合您的格式,然后将其设为您的 activeFormat
并设置所需的帧持续时间,如下所示:
try! videoDevice.lockForConfiguration()
videoDevice.activeFormat = my60FPSFormat
videoDevice.activeVideoMinFrameDuration = CMTime(value: 1, timescale: 60)
videoDevice.activeVideoMaxFrameDuration = CMTime(value: 1, timescale: 60)
videoDevice.unlockForConfiguration()
谢谢,这回答了我的问题!:)
对于仍然想知道下面是我使用的代码的人:
// Instantiate the video device: wide angle camera, back position
let videoDevice = AVCaptureDevice.default(.builtInWideAngleCamera,
for: .video,
position: .back)
// Set the frame rate to 60, as expected by the model
try! videoDevice?.lockForConfiguration()
videoDevice?.activeFormat = (videoDevice?.formats[30])!
videoDevice?.activeVideoMinFrameDuration = CMTimeMake(value: 1, timescale: 60)
videoDevice?.activeVideoMaxFrameDuration = CMTimeMake(value: 1, timescale: 60)
videoDevice?.unlockForConfiguration()
// Debug only
// print(videoDevice?.activeFormat)
但是,一定要添加一些错误handling:D
再次感谢。