Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要检索 iPhone 的 iOS 相机拍摄的电影的像素分辨率...是否有像 UIDevice 这样的库来检查我正在使用的设备类型,以及相机信息?
一切都取决于您将在哪种模式下开始捕获视频。
根据此链接:https ://developer.apple.com/library/mac/documentation/AudioVideo/Conceptual/AVFoundationPG/Articles/04_MediaCapture.html#//apple_ref/doc/uid/TP40010188-CH5-SW30
您可以尝试使用AVCaptureSessionPresetHigh预设捕获视频,然后检查捕获图像的大小。
AVCaptureSessionPresetHigh
这应该会在录制模式下为您提供最高的视频分辨率。