0

我正在开发一个 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];

一旦播放音频文件,视频录制就会停止并且不会恢复。

4

1 回答 1

1

我对这个话题一无所知,但也许这个答案会对你有所帮助。祝你好运!

于 2013-07-17T06:29:31.580 回答