AVCaptureSession Record Video With Audio

后端 未结 3 1609
孤独总比滥情好
孤独总比滥情好 2021-02-01 05:48

I have my app set up to record video from the camera using an AVCaptureSession, however, there is no audio with it. What do I need to do to record audio and then add it to the

3条回答
  •  醉话见心
    2021-02-01 06:01

    Add below code between beginConfiguration() and commitConfiguration()

    // Add audio device to the recording
    
    let audioDevice = AVCaptureDevice.defaultDeviceWithMediaType(AVMediaTypeAudio)
    do {
        let audioInput = try AVCaptureDeviceInput(device: audioDevice)
        self.captureSession.addInput(audioInput)
    } catch {
        print("Unable to add audio device to the recording.")
    }
    

提交回复
热议问题