Avfoundation - Воспроизведение и запись видео (вместе с аудио и предварительным просмотром) одновременно - PullRequest
6 голосов
/ 09 августа 2011

Я пытаюсь записывать и воспроизводить видео одновременно. Возможно ли это с помощью avfoundation? В настоящее время я могу сделать это, пока я не записываю аудио. Как только я добавляю аудиовход в AVCaptureSession и перезапускаю все это, я получаю «AVCaptureSessionWasInterruptedNotification», и запись останавливается.

Вот так я и играю видео.

MPMoviePlayerController *moviePlayer = [[MPMoviePlayerController alloc]     initWithContentURL:[NSURL fileURLWithPath:path]];
[moviePlayer.view setFrame:self.playerView.bounds];
moviePlayer.useApplicationAudioSession=NO;
self.player = moviePlayer;

[moviePlayer release];

[self.playerView addSubview:player.view];

[player play];

А вот как я записываю видео:

NSError *error;

AVCamCaptureManager *captureManager = [[AVCamCaptureManager alloc] init];



if ([captureManager setupSessionWithPreset:AVCaptureSessionPresetLow error:&error])
{
    [self setCaptureManager:captureManager];



     AVCaptureVideoPreviewLayer *previewLayer = [[AVCaptureVideoPreviewLayer alloc] initWithSession:[captureManager session]];
     self.captureVideoPreviewLayer= previewLayer;

     UIView *view = [self cameraView];
     CALayer *viewLayer = [view layer];
     [viewLayer setMasksToBounds:YES];

     CGRect bounds = [view bounds];


     [captureVideoPreviewLayer setFrame:bounds];

     if ([captureVideoPreviewLayer isOrientationSupported]) 
     [captureVideoPreviewLayer setOrientation:AVCaptureVideoOrientationPortrait];


     [captureVideoPreviewLayer setVideoGravity:AVLayerVideoGravityResizeAspectFill];


   [[captureManager session] startRunning];

    [self setCaptureVideoPreviewLayer:captureVideoPreviewLayer];

    if ([[captureManager session] isRunning])
    {
        [captureManager setOrientation:AVCaptureVideoOrientationPortrait];
        [captureManager setDelegate:self];


        [viewLayer insertSublayer:captureVideoPreviewLayer below:[[viewLayer sublayers] objectAtIndex:0]];

        NSString *countString = [[NSString alloc] initWithFormat:@"%d", [[AVCaptureDevice devices] count]];
        NSLog(@"Device count: %@",countString);


    } else {
        UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Failure"
                                                            message:@"Failed to start session."
                                                           delegate:nil
                                                  cancelButtonTitle:@"Okay"
                                                  otherButtonTitles:nil];
        [alertView show];
        [alertView release];

    }
} else {
    UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Input Device Init Failed"
                                                        message:[error localizedDescription]
                                                       delegate:nil
                                              cancelButtonTitle:@"Okay"
                                              otherButtonTitles:nil];
    [alertView show];
    [alertView release];        
}

[captureManager release];
if (![[self captureManager] isRecording]) {
    [[self captureManager] startRecording];
} 

Где я использую «AVCamCaptureManager» из примера кода Apple AVCam.

Ответы [ 2 ]

4 голосов
/ 07 декабря 2011

Сначала настройте moviePlayer на использование аудиосеанса приложения:

moviePlayer.useApplicationAudioSession=YES;

Затем, до вызова [[captureManager session] startRunning] , активируйтеаудиосеанс с категорией «играть и записывать» и переопределять его свойство, чтобы позволить ему смешиваться с другими.

// Set audio session category to "play and record"
NSError* error = nil;
AVAudioSession* audioSession = [AVAudioSession sharedInstance];
if (![audioSession setCategory:AVAudioSessionCategoryPlayAndRecord error:&error]) {
    NSLog(@"AVAudioSession setCategory failed: %@", [error localizedDescription]);
}

// Set audio session property "allow mixing" to true so audio can be recorded while it is playing
UInt32 allowMixing = true;
OSStatus status = AudioSessionSetProperty(kAudioSessionProperty_OverrideCategoryMixWithOthers, sizeof(allowMixing), &allowMixing);
if (status != kAudioSessionNoError) {
    NSLog(@"AudioSessionSetProperty(kAudioSessionProperty_OverrideCategoryMixWithOthers) failed: %ld", status);
}

// Activate the audio session
error = nil;
if (![audioSession setActive:YES error:&error]) {
    NSLog(@"AVAudioSession setActive:YES failed: %@", [error localizedDescription]);
}
0 голосов
/ 12 апреля 2012

Просто если кому-то еще интересно ... У меня есть вышеупомянутый подход к работе, также предложенный Wertesse, но он также работает с AVPlayer (у которого нет атрибута useApplicationAudioSession).

...