2021-02-19 08:28:05 -07:00
|
|
|
//
|
|
|
|
// CameraView+RecordVideo.swift
|
|
|
|
// Cuvent
|
|
|
|
//
|
|
|
|
// Created by Marc Rousavy on 16.12.20.
|
2021-06-01 05:07:57 -06:00
|
|
|
// Copyright © 2020 mrousavy. All rights reserved.
|
2021-02-19 08:28:05 -07:00
|
|
|
//
|
|
|
|
|
|
|
|
import AVFoundation
|
|
|
|
|
2021-05-06 06:11:55 -06:00
|
|
|
private var hasLoggedFrameDropWarning = false
|
|
|
|
|
|
|
|
// MARK: - CameraView + AVCaptureVideoDataOutputSampleBufferDelegate, AVCaptureAudioDataOutputSampleBufferDelegate
|
|
|
|
|
|
|
|
extension CameraView: AVCaptureVideoDataOutputSampleBufferDelegate, AVCaptureAudioDataOutputSampleBufferDelegate {
|
2021-06-03 06:16:02 -06:00
|
|
|
/**
|
|
|
|
Starts a video + audio recording with a custom Asset Writer.
|
|
|
|
*/
|
2021-02-19 08:28:05 -07:00
|
|
|
func startRecording(options: NSDictionary, callback: @escaping RCTResponseSenderBlock) {
|
2021-05-06 06:11:55 -06:00
|
|
|
cameraQueue.async {
|
|
|
|
ReactLogger.log(level: .info, message: "Starting Video recording...")
|
2021-06-03 06:16:02 -06:00
|
|
|
|
2021-05-06 06:11:55 -06:00
|
|
|
do {
|
|
|
|
let errorPointer = ErrorPointer(nilLiteral: ())
|
|
|
|
guard let tempFilePath = RCTTempFilePath("mov", errorPointer) else {
|
|
|
|
return callback([NSNull(), makeReactError(.capture(.createTempFileError), cause: errorPointer?.pointee)])
|
|
|
|
}
|
2021-02-19 08:28:05 -07:00
|
|
|
|
2021-05-06 06:11:55 -06:00
|
|
|
let tempURL = URL(string: "file://\(tempFilePath)")!
|
|
|
|
if let flashMode = options["flash"] as? String {
|
|
|
|
// use the torch as the video's flash
|
|
|
|
self.setTorchMode(flashMode)
|
|
|
|
}
|
|
|
|
|
|
|
|
var fileType = AVFileType.mov
|
|
|
|
if let fileTypeOption = options["fileType"] as? String {
|
|
|
|
fileType = AVFileType(withString: fileTypeOption)
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: The startRecording() func cannot be async because RN doesn't allow
|
|
|
|
// both a callback and a Promise in a single function. Wait for TurboModules?
|
|
|
|
// This means that any errors that occur in this function have to be delegated through
|
|
|
|
// the callback, but I'd prefer for them to throw for the original function instead.
|
2021-02-19 08:28:05 -07:00
|
|
|
|
2021-05-06 06:11:55 -06:00
|
|
|
let onFinish = { (status: AVAssetWriter.Status, error: Error?) -> Void in
|
|
|
|
defer {
|
|
|
|
self.recordingSession = nil
|
2021-06-03 06:16:02 -06:00
|
|
|
self.audioQueue.async {
|
|
|
|
self.deactivateAudioSession()
|
|
|
|
}
|
2021-05-06 06:11:55 -06:00
|
|
|
}
|
|
|
|
ReactLogger.log(level: .info, message: "RecordingSession finished with status \(status.descriptor).")
|
|
|
|
if let error = error {
|
|
|
|
let description = (error as NSError).description
|
|
|
|
return callback([NSNull(), CameraError.capture(.unknown(message: "An unknown recording error occured! \(description)"))])
|
|
|
|
} else {
|
|
|
|
if status == .completed {
|
|
|
|
return callback([[
|
|
|
|
"path": self.recordingSession!.url.absoluteString,
|
|
|
|
"duration": self.recordingSession!.duration,
|
|
|
|
], NSNull()])
|
|
|
|
} else {
|
|
|
|
return callback([NSNull(), CameraError.unknown(message: "AVAssetWriter completed with status: \(status.descriptor)")])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
self.recordingSession = try RecordingSession(url: tempURL,
|
|
|
|
fileType: fileType,
|
|
|
|
completion: onFinish)
|
|
|
|
|
2021-06-03 06:16:02 -06:00
|
|
|
// Init Video
|
|
|
|
guard let videoOutput = self.videoOutput,
|
|
|
|
let videoSettings = videoOutput.recommendedVideoSettingsForAssetWriter(writingTo: fileType),
|
|
|
|
!videoSettings.isEmpty else {
|
|
|
|
throw CameraError.capture(.createRecorderError(message: "Failed to get video settings!"))
|
|
|
|
}
|
|
|
|
self.recordingSession!.initializeVideoWriter(withSettings: videoSettings,
|
|
|
|
isVideoMirrored: self.videoOutput!.isMirrored)
|
|
|
|
|
|
|
|
// Init Audio (optional, async)
|
|
|
|
self.audioQueue.async {
|
|
|
|
// Activate Audio Session (blocking)
|
|
|
|
self.activateAudioSession()
|
|
|
|
guard let recordingSession = self.recordingSession else {
|
|
|
|
// recording has already been cancelled
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if let audioOutput = self.audioOutput,
|
|
|
|
let audioSettings = audioOutput.recommendedAudioSettingsForAssetWriter(writingTo: fileType) as? [String: Any] {
|
|
|
|
recordingSession.initializeAudioWriter(withSettings: audioSettings)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Finally start recording, with or without audio.
|
|
|
|
recordingSession.start()
|
|
|
|
self.isRecording = true
|
|
|
|
}
|
2021-05-06 06:11:55 -06:00
|
|
|
} catch EnumParserError.invalidValue {
|
|
|
|
return callback([NSNull(), EnumParserError.invalidValue])
|
|
|
|
} catch let error as NSError {
|
|
|
|
return callback([NSNull(), makeReactError(.capture(.createTempFileError), cause: error)])
|
|
|
|
}
|
2021-02-19 08:28:05 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func stopRecording(promise: Promise) {
|
2021-05-06 06:11:55 -06:00
|
|
|
cameraQueue.async {
|
2021-06-03 06:16:02 -06:00
|
|
|
self.isRecording = false
|
|
|
|
|
2021-05-06 06:11:55 -06:00
|
|
|
withPromise(promise) {
|
|
|
|
guard let recordingSession = self.recordingSession else {
|
|
|
|
throw CameraError.capture(.noRecordingInProgress)
|
|
|
|
}
|
|
|
|
recordingSession.finish()
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: Implement for JS
|
|
|
|
func pauseRecording(promise: Promise) {
|
|
|
|
cameraQueue.async {
|
2021-02-19 08:28:05 -07:00
|
|
|
withPromise(promise) {
|
2021-05-06 06:11:55 -06:00
|
|
|
if self.isRecording {
|
|
|
|
self.isRecording = false
|
|
|
|
return nil
|
|
|
|
} else {
|
|
|
|
throw CameraError.capture(.noRecordingInProgress)
|
2021-02-19 08:28:05 -07:00
|
|
|
}
|
2021-05-06 06:11:55 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: Implement for JS
|
|
|
|
func resumeRecording(promise: Promise) {
|
|
|
|
cameraQueue.async {
|
|
|
|
withPromise(promise) {
|
|
|
|
if !self.isRecording {
|
|
|
|
self.isRecording = true
|
|
|
|
return nil
|
|
|
|
} else {
|
|
|
|
throw CameraError.capture(.noRecordingInProgress)
|
2021-02-19 08:28:05 -07:00
|
|
|
}
|
2021-05-06 06:11:55 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-02-19 08:28:05 -07:00
|
|
|
|
2021-05-06 06:11:55 -06:00
|
|
|
public final func captureOutput(_ captureOutput: AVCaptureOutput, didOutput sampleBuffer: CMSampleBuffer, from _: AVCaptureConnection) {
|
|
|
|
if isRecording {
|
|
|
|
guard let recordingSession = recordingSession else {
|
|
|
|
return invokeOnError(.capture(.unknown(message: "isRecording was true but the RecordingSession was null!")))
|
2021-02-19 08:28:05 -07:00
|
|
|
}
|
2021-05-06 06:11:55 -06:00
|
|
|
switch captureOutput {
|
|
|
|
case is AVCaptureVideoDataOutput:
|
|
|
|
recordingSession.appendBuffer(sampleBuffer, type: .video)
|
|
|
|
case is AVCaptureAudioDataOutput:
|
|
|
|
recordingSession.appendBuffer(sampleBuffer, type: .audio)
|
|
|
|
default:
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if let frameProcessor = frameProcessorCallback, captureOutput is AVCaptureVideoDataOutput {
|
|
|
|
// check if last frame was x nanoseconds ago, effectively throttling FPS
|
|
|
|
let diff = DispatchTime.now().uptimeNanoseconds - lastFrameProcessorCall.uptimeNanoseconds
|
|
|
|
let secondsPerFrame = 1.0 / frameProcessorFps.doubleValue
|
|
|
|
let nanosecondsPerFrame = secondsPerFrame * 1_000_000_000.0
|
|
|
|
if diff > UInt64(nanosecondsPerFrame) {
|
|
|
|
frameProcessor(sampleBuffer)
|
|
|
|
lastFrameProcessorCall = DispatchTime.now()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public final func captureOutput(_ captureOutput: AVCaptureOutput, didDrop buffer: CMSampleBuffer, from _: AVCaptureConnection) {
|
2021-06-03 06:16:02 -06:00
|
|
|
#if DEBUG
|
|
|
|
if frameProcessorCallback != nil && !hasLoggedFrameDropWarning && captureOutput is AVCaptureVideoDataOutput {
|
|
|
|
let reason = findFrameDropReason(inBuffer: buffer)
|
|
|
|
ReactLogger.log(level: .warning,
|
|
|
|
message: "Dropped a Frame. This might indicate that your Frame Processor is doing too much work. " +
|
|
|
|
"Either throttle the frame processor's frame rate, or optimize your frame processor's execution speed. Frame drop reason: \(reason)",
|
|
|
|
alsoLogToJS: true)
|
|
|
|
hasLoggedFrameDropWarning = true
|
|
|
|
}
|
|
|
|
#endif
|
2021-05-06 06:11:55 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
private final func findFrameDropReason(inBuffer buffer: CMSampleBuffer) -> String {
|
|
|
|
var mode: CMAttachmentMode = 0
|
|
|
|
guard let reason = CMGetAttachment(buffer,
|
|
|
|
key: kCMSampleBufferAttachmentKey_DroppedFrameReason,
|
|
|
|
attachmentModeOut: &mode) else {
|
|
|
|
return "unknown"
|
2021-02-19 08:28:05 -07:00
|
|
|
}
|
2021-05-06 06:11:55 -06:00
|
|
|
return String(describing: reason)
|
2021-02-19 08:28:05 -07:00
|
|
|
}
|
|
|
|
}
|