我正在开发一个 iPhone 应用程序,其中需要从 iPhone 前置摄像头录制视频并同时在其间播放音频文件。我使用 AVCamCaptureManager 来录制视频。我在后台使用 dispatch_queue 录制视频,如下所示:
// ------ This will start recording in Background --------
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0), ^{
[self startRecordingInBackground];
});
在播放某些音频文件之前,它可以正常工作。
// ----- Playing Audio File ---------
NSString *filePath = [[NSBundle mainBundle] pathForResource:@"Start_b4_counting_down" ofType:@"mp3" inDirectory:Nil];
NSLog(@"filePath %@", filePath);
NSURL *fileURL = [[NSURL alloc] initFileURLWithPath: filePath];
self.theAudio=[[AVAudioPlayer alloc] initWithContentsOfURL:fileURL error:NULL];
self.theAudio.volume = 10.0;
self.theAudio.delegate = self;
[self.theAudio prepareToPlay];
[self.theAudio play];
一旦播放音频文件,视频录制就会停止并且不会恢复。