在快速拍摄视频iOS时保持手电筒



我构建了一个用于自动捕获的相机应用程序。只要相机打开,我就想保持闪光灯打开状态。我设置了以下代码:

 cameraDevice = AVCaptureDevice.defaultDevice(withMediaType: AVMediaTypeVideo)
    if (cameraDevice.hasTorch) {
        do {
            try cameraDevice.lockForConfiguration()
            if cameraDevice.isTorchActive {
                cameraDevice.torchMode = AVCaptureTorchMode.on
            } else {
                // sets the torch intensity to 100%
               try  cameraDevice.setTorchModeOnWithLevel(0.8)
            }
            cameraDevice.unlockForConfiguration()
        } catch {
            print(error)
        }
    }

但是当我运行该应用程序时,它只闪烁一次,然后熄灭。如何解决这个问题?

调用此方法

在相机内部处于活动状态/打开func或当设备相机处于活动状态时 -

   func flashActive() {
    if let currentDevice = AVCaptureDevice.default(for: AVMediaType.video), currentDevice.hasTorch {
        do {
            try currentDevice.lockForConfiguration()
            let torchOn = !currentDevice.isTorchActive
            try currentDevice.setTorchModeOn(level:1.0)//Or whatever you want
            currentDevice.torchMode = torchOn ? .on : .off
            currentDevice.unlockForConfiguration()
        } catch {
            print("error")
        }
    }
}

相关内容

  • 没有找到相关文章

最新更新