mirror of
https://github.com/HaishinKit/HaishinKit.swift.git
synced 2026-05-07 20:12:28 +00:00
537 B
537 B
FAQ
Frequently Asked Questions and Answers from a Technical Perspective.
Q. Is it possible to use a UVC camera?
Yes. Starting with iPadOS 17.0, it became available through the OS API. Unfortunately, its operation on iOS has not been confirmed.
if #available(iOS 17.0, *) {
let camera = AVCaptureDevice.default(.external, for: .video,
position: .unspecified)
try? await mixer.attachVideo(camera, track: 0)
}