Files
2025-05-19 22:58:49 +09:00

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)
}