AVCaptureMovieFileOutput-没有活动/启用的连接 [英] AVCaptureMovieFileOutput - no active/enabled connections

查看:125
本文介绍了AVCaptureMovieFileOutput-没有活动/启用的连接的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试使用AVFoundation在我的iPhone应用程序中录制视频. 但是每当我单击记录"按钮时,应用程序都会崩溃并显示此消息

I am trying to record video in my iPhone app using AVFoundation. But whenever I click the Record button app crashes with this message

-[AVCaptureMovieFileOutput startRecordingToOutputFileURL:recordingDelegate:]-未启用/已启用 连接.

-[AVCaptureMovieFileOutput startRecordingToOutputFileURL:recordingDelegate:] - no active/enabled connections.

我知道在SO中提出了相同的问题,但没有一个答案对我有帮助. 我的问题是相同的代码可以完美地与另一个应用程序一起使用,并且当我尝试在此应用程序中使用完全相同的代码时会崩溃.但是照片拍摄仍然可以正常工作.

I know same question asked in SO, but none of its answers helped me. My problem is the same code works with another application perfectly, and when I try using exactly same code in this app - crashes. But still photo capture is working fine.

在这里添加我的代码-请帮助我,谢谢!

Adding my codes here - please help me, Thanks in advance

  -(void)viewDidLoad
  {
 [super viewDidLoad];
 self.captureSession = [[AVCaptureSession alloc] init];

   AVCaptureDevice *videoDevice = [AVCaptureDevice defaultDeviceWithMediaType:AVMediaTypeVideo];
AVCaptureDevice *audioDevice = [AVCaptureDevice defaultDeviceWithMediaType:AVMediaTypeAudio];

  self.videoInput = [AVCaptureDeviceInput deviceInputWithDevice:videoDevice error:nil];
  self.audioInput = [[AVCaptureDeviceInput alloc] initWithDevice:audioDevice error:nil];

  self.stillImageOutput = [[AVCaptureStillImageOutput alloc] init];
  NSDictionary *stillImageOutputSettings = [[NSDictionary alloc] initWithObjectsAndKeys:
                                          AVVideoCodecJPEG, AVVideoCodecKey, nil];
  [self.stillImageOutput setOutputSettings:stillImageOutputSettings];

  self.movieOutput = [[AVCaptureMovieFileOutput alloc] init];

  [self.captureSession addInput:self.videoInput];
  [self.captureSession addOutput:self.stillImageOutput];




   previewLayer = [AVCaptureVideoPreviewLayer layerWithSession:self.captureSession];
   UIView *aView = self.view;
   previewLayer.frame = CGRectMake(70, 190, 270, 270);
   [aView.layer addSublayer:previewLayer];


     }




  -(NSURL *) tempFileURL
  {
    NSString *outputPath = [[NSString alloc] initWithFormat:@"%@%@", NSTemporaryDirectory(), @"output.mov"];
    NSURL *outputURL = [[NSURL alloc] initFileURLWithPath:outputPath];
   NSFileManager *manager = [[NSFileManager alloc] init];
   if ([manager fileExistsAtPath:outputPath])
    {
    [manager removeItemAtPath:outputPath error:nil];
    }


    return outputURL;
  }

  -(IBAction)capture:(id)sender
  {

    if (self.movieOutput.isRecording == YES)
    {
         [self.movieOutput stopRecording];
    }
    else
    {
         [self.movieOutput startRecordingToOutputFileURL:[self tempFileURL] recordingDelegate:self];
    }

      }





   -(void)captureOutput:(AVCaptureFileOutput *)captureOutput  didFinishRecordingToOutputFileAtURL:(NSURL *)outputFileURL
  fromConnections:(NSArray *)connections
            error:(NSError *)error
  {


   BOOL recordedSuccessfully = YES;
  if ([error code] != noErr)
    {
    id value = [[error userInfo] objectForKey:AVErrorRecordingSuccessfullyFinishedKey];
    if (value)
        recordedSuccessfully = [value boolValue];
    NSLog(@"A problem occurred while recording: %@", error);
   }
  if (recordedSuccessfully) {
    ALAssetsLibrary *library = [[ALAssetsLibrary alloc] init];

    [library writeVideoAtPathToSavedPhotosAlbum:outputFileURL
                                completionBlock:^(NSURL *assetURL, NSError *error)
     {
         UIAlertView *alert;
         if (!error)
         {
             alert = [[UIAlertView alloc] initWithTitle:@"Video Saved"
                                                message:@"The movie was successfully saved to you photos library"
                                               delegate:nil
                                      cancelButtonTitle:@"OK"
                                      otherButtonTitles:nil, nil];
         }
         else
         {
             alert = [[UIAlertView alloc] initWithTitle:@"Error Saving Video"
                                                message:@"The movie was not saved to you photos library"
                                               delegate:nil
                                      cancelButtonTitle:@"OK"

                                      otherButtonTitles:nil, nil];
         }

         [alert show];
     }
     ];
    }

  }

推荐答案

我在更改videoDevice activeFormat时遇到了相同的问题,后来又想录制视频.因为我使用的是质量最好的视频,所以必须将sessionPreset设置为高,就像下面的

I had the same problem while changing videoDevice activeFormat and later wanted to record video. Because I was using best quality video I had to set sessionPreset to high, like following

_session.sessionPreset = AVCaptureSessionPresetHigh;

_session.sessionPreset = AVCaptureSessionPresetHigh;

它对我有用! :)

这篇关于AVCaptureMovieFileOutput-没有活动/启用的连接的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆