fix: Fix torch not being reset after video recording (#2209)

This commit is contained in:
Marc Rousavy 2023-11-23 22:19:44 +01:00 committed by GitHub
parent 717a3534bc
commit bb3a42e6bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 13 additions and 8 deletions

View File

@ -18,6 +18,13 @@ extension CameraView: AVCaptureVideoDataOutputSampleBufferDelegate, AVCaptureAud
do {
let options = try RecordVideoOptions(fromJSValue: options)
// If flash is on, just enable torch
if options.flash != .off {
cameraSession.configure { config in
config.torch = options.flash
}
}
// Start Recording with success and error callbacks
cameraSession.startRecording(
options: options,
@ -40,6 +47,11 @@ extension CameraView: AVCaptureVideoDataOutputSampleBufferDelegate, AVCaptureAud
func stopRecording(promise: Promise) {
cameraSession.stopRecording(promise: promise)
// If flash was used, we had the torch enabled. Now set it back to it's original state.
cameraSession.configure { config in
config.torch = try Torch(jsValue: torch)
}
}
func pauseRecording(promise: Promise) {

View File

@ -214,7 +214,7 @@ public final class CameraView: UIView, CameraSessionDelegate {
// Side-Props
config.fps = fps?.int32Value
config.enableLowLightBoost = lowLightBoost
config.torch = getTorch()
config.torch = try Torch(jsValue: torch)
// Zoom
config.zoom = zoom.doubleValue

View File

@ -22,13 +22,6 @@ extension CameraSession {
let start = DispatchTime.now()
ReactLogger.log(level: .info, message: "Starting Video recording...")
if options.flash != .off {
// use the torch as the video's flash
self.configure { config in
config.torch = options.flash
}
}
// Get Video Output
guard let videoOutput = self.videoOutput else {
if self.configuration?.video == .disabled {