DirectCall startRecording Error

[Problem/Question]
음성 녹음을 시작할 때 크래시 오류가 납니다.
아래는 DirectCall::startRecording 함수에서 발생하는 오류 내용입니다.

*** -[AVAssetWriterInput initWithMediaType:outputSettings:sourceFormatHint:] Invalid value 0.00 for AVSampleRateKey; sample rate must be between 8.0 and 192.0 kHz inclusive

// If problem, please fill out the below. If question, please delete.
[SDK Version]
sendbird-calls-ios : v1.10.18

[Reproduction Steps]
// Please provide reproduction steps and, if possible, code snippets.
재현 단계는 명확하지 않음.

  • OS 버전: ios iOS 17.4.1
  • 모델:iPhone 15 Pro Max
private func executeStartRecording(call: DirectCall, options: RecordingOptions) async throws -> String? {
    try await withCheckedThrowingContinuation { continuation in
        call.startRecording(options: options) { recorderId, error in
            if let error = error {
                continuation.resume(throwing: error)
            } else {
                continuation.resume(returning: recorderId)
            }
        }
    }
}

private func beginRecording(call: DirectCall, calleeRolledName: String?) async throws -> String? {
    let directoryUrl = FileManager.default.temporaryDirectory
    let fileName = "\(Int(Date().timeIntervalSince1970))"
    let options = RecordingOptions(recordingType: .localRemoteAudios, directoryPath: directoryUrl, fileName: fileName)
    guard let id = try await executeStartRecording(call: call, options: options) else {
        return nil
    }
    self.call = call
    self.recordingId = id
    self.recordingAt = Date()
    self.calleeRolledName = calleeRolledName
    SendBirdCall.addRecordingDelegate(self, identifier: id)
    return id
}

[Frequency]
// How frequently is this issue occurring?

[Current impact]
// How is this currently impacting your implementation?