簡體   English   中英

用戶講話時自動開始錄音

[英]Automatically Start audio recording when user speaks

我正在嘗試在用戶開始講話時開始錄制,而在用戶完成講話后停止錄制。 我想限制最大錄制音頻長度。我無法在AVAudioRecorderDelegate中找到足夠的功能。希望您理解我的問題。

@IBAction func recordAudio(_ sender: Any) {
    recordingLabel.text = "Recording in progress..."
    let dirPath = NSSearchPathForDirectoriesInDomains(.documentDirectory,.userDomainMask, true)[0] as String
    let recordingName = "recordedVoice.wav"
    let pathArray = [dirPath, recordingName]
    let filePath = URL(string: pathArray.joined(separator: "/"))

    let session = AVAudioSession.sharedInstance()
    try! session.setCategory(AVAudioSessionCategoryPlayAndRecord, with:AVAudioSessionCategoryOptions.defaultToSpeaker)

    try! audioRecorder = AVAudioRecorder(url: filePath!, settings: [:])
    audioRecorder.delegate = self
    audioRecorder.isMeteringEnabled = true
    audioRecorder.prepareToRecord()
    audioRecorder.record()
}

@IBAction func stopRecording(_ sender: Any) {
    recordButton.isEnabled = true
    stopRecordingButton.isEnabled = false
    recordingLabel.text = "Tap to record..."

    audioRecorder.stop()
    let audioSession = AVAudioSession.sharedInstance()
    try! audioSession.setActive(false)
}

func audioRecorderDidFinishRecording(_ recorder: AVAudioRecorder, successfully flag: Bool) {
    if (flag) {
        //Success
    } else {
        print("Could not save audio recording!")
    }
}

錄制音頻當用戶tak1時,您需要一些步驟

1.用戶對您所有應用程序使用Mic的許可

在您的信息列表中,在用戶列表中添加Privacy - Microphone Usage Description ,並添加文字說明

2.保存記錄文件用戶FileManager

3.結束時間 :使用audioRecorder.record(forDuration: 30) // record for 30 Sec

檢查完整的代碼:

import UIKit
import AVFoundation

class ViewController: UIViewController  {

   @IBOutlet weak var recordButton: UIButton!
    var recordingSession: AVAudioSession!
    var audioRecorder: AVAudioRecorder!


    override func viewDidLoad() {
        super.viewDidLoad()

    }

    @IBAction func recordAudio(_ sender: Any) {
        self.requestRecordPermission()
    }

    func requestRecordPermission() {
        recordingSession = AVAudioSession.sharedInstance()
        do {
            try recordingSession.setCategory(AVAudioSessionCategoryPlayAndRecord)
            try recordingSession.setActive(true)
            recordingSession.requestRecordPermission() { [unowned self] allowed in
                DispatchQueue.main.async {
                    if allowed {
                        // User allow you to record

                        // Start recording and change UIbutton color
                        self.recordButton.backgroundColor = .red
                        self.startRecording()

                    } else {
                        // failed to record!
                    }
                }
            }
        } catch {
            // failed to record!
        }
    }
    func startRecording() {

        let audioFilename = getDocumentsDirectory().appendingPathComponent("recordedFile.m4a")

        let settings = [
            AVFormatIDKey: Int(kAudioFormatMPEG4AAC),
            AVSampleRateKey: 12000,
            AVNumberOfChannelsKey: 1,
            AVEncoderAudioQualityKey: AVAudioQuality.high.rawValue
        ]

        do {
            audioRecorder = try AVAudioRecorder(url: audioFilename, settings: settings)
            audioRecorder.delegate = self
            audioRecorder.record(forDuration: 30)  // record for 30 Sec
            recordButton.setTitle("Tap to Stop", for: .normal)
            recordButton.backgroundColor = .green

        } catch {
            finishRecording(success: false)
        }
    }
    func getDocumentsDirectory() -> URL {
        let paths = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask)
        return paths[0]
    }

    @objc func recordTapped() {
        if audioRecorder == nil {
            startRecording()
        } else {
            finishRecording(success: true)
        }
    }

    public func finishRecording(success: Bool) {
        audioRecorder.stop()
        audioRecorder = nil

        if success {
            // record sucess
            recordButton.backgroundColor = .green
        } else {
            // record fail

            recordButton.backgroundColor = .yellow

        }
    }

}


extension ViewController :AVAudioRecorderDelegate{


    func audioRecorderDidFinishRecording(_ recorder: AVAudioRecorder, successfully flag: Bool) {
        if !flag {
            finishRecording(success: false)
        }
    }
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM