AVCaptureSession Record Video With Audio

后端 未结 3 1610
孤独总比滥情好
孤独总比滥情好 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:23

    You have not included the audio device:

    AVCaptureDevice *audioDevice = [AVCaptureDevice defaultDeviceWithMediaType:AVMediaTypeAudio];
    AVCaptureDeviceInput * audioInput = [AVCaptureDeviceInput deviceInputWithDevice:audioDevice error:nil];
    [session addInput:audioInput]
    

    between beginConfiguration and commitConfiguration. It'll work!!!

提交回复
热议问题