首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >可以同时使用AVCaptureVideoDataOutput和AVCaptureMovieFileOutput吗?

可以同时使用AVCaptureVideoDataOutput和AVCaptureMovieFileOutput吗?
EN

Stack Overflow用户
提问于 2011-02-09 19:14:35
回答 2查看 23.2K关注 0票数 32

我想用我的代码同时录制视频和抓取帧。

我使用AVCaptureVideoDataOutput抓取帧,使用AVCaptureMovieFileOutput进行视频录制。但不能同时工作并得到错误代码-12780,而是单独工作。

我搜索了这个问题,但没有得到答案。有没有人有过同样的经历或解释?这真的困扰了我一段时间。

谢谢。

EN

回答 2

Stack Overflow用户

发布于 2011-02-09 20:03:31

我不能回答具体的问题,但我已经成功地录制视频和抓取帧在同一时间使用:

  • AVCaptureSessionAVCaptureVideoDataOutput用于将帧路由到我自己的code
  • AVAssetWriterAVAssetWriterInputAVAssetWriterInputPixelBufferAdaptor用于将帧写出到H.264编码的电影文件

那是在没有调查音频的情况下。我最终从捕获会话中获取CMSampleBuffers,然后将它们推入像素缓冲区适配器中。

EDIT:使我的代码看起来或多或少类似于,略过的部分没有问题,忽略了范围的问题:

代码语言:javascript
复制
/* to ensure I'm given incoming CMSampleBuffers */
AVCaptureSession *captureSession = alloc and init, set your preferred preset/etc;
AVCaptureDevice *captureDevice = default for video, probably;

AVCaptureDeviceInput *deviceInput = input with device as above, 
                                    and attach it to the session;

AVCaptureVideoDataOutput *output = output for 32BGRA pixel format, with me as the
                                   delegate and a suitable dispatch queue affixed.

/* to prepare for output; I'll output 640x480 in H.264, via an asset writer */
NSDictionary *outputSettings =
    [NSDictionary dictionaryWithObjectsAndKeys:

            [NSNumber numberWithInt:640], AVVideoWidthKey,
            [NSNumber numberWithInt:480], AVVideoHeightKey,
            AVVideoCodecH264, AVVideoCodecKey,

            nil];

AVAssetWriterInput *assetWriterInput = [AVAssetWriterInput 
                                   assetWriterInputWithMediaType:AVMediaTypeVideo
                                                  outputSettings:outputSettings];

/* I'm going to push pixel buffers to it, so will need a 
   AVAssetWriterPixelBufferAdaptor, to expect the same 32BGRA input as I've
   asked the AVCaptureVideDataOutput to supply */
AVAssetWriterInputPixelBufferAdaptor *pixelBufferAdaptor =
           [[AVAssetWriterInputPixelBufferAdaptor alloc] 
                initWithAssetWriterInput:assetWriterInput 
                sourcePixelBufferAttributes:
                     [NSDictionary dictionaryWithObjectsAndKeys:
                          [NSNumber numberWithInt:kCVPixelFormatType_32BGRA], 
                           kCVPixelBufferPixelFormatTypeKey,
                     nil]];

/* that's going to go somewhere, I imagine you've got the URL for that sorted,
   so create a suitable asset writer; we'll put our H.264 within the normal
   MPEG4 container */
AVAssetWriter *assetWriter = [[AVAssetWriter alloc]
                                initWithURL:URLFromSomwhere
                                fileType:AVFileTypeMPEG4
                                error:you need to check error conditions,
                                      this example is too lazy];
[assetWriter addInput:assetWriterInput];

/* we need to warn the input to expect real time data incoming, so that it tries
   to avoid being unavailable at inopportune moments */
assetWriterInput.expectsMediaDataInRealTime = YES;

... eventually ...

[assetWriter startWriting];
[assetWriter startSessionAtSourceTime:kCMTimeZero];
[captureSession startRunning];

... elsewhere ...

- (void)        captureOutput:(AVCaptureOutput *)captureOutput 
    didOutputSampleBuffer:(CMSampleBufferRef)sampleBuffer 
           fromConnection:(AVCaptureConnection *)connection
{
    CVImageBufferRef imageBuffer = CMSampleBufferGetImageBuffer(sampleBuffer);

    // a very dense way to keep track of the time at which this frame
    // occurs relative to the output stream, but it's just an example!
    static int64_t frameNumber = 0;
    if(assetWriterInput.readyForMoreMediaData)
        [pixelBufferAdaptor appendPixelBuffer:imageBuffer
                         withPresentationTime:CMTimeMake(frameNumber, 25)];
    frameNumber++;
}

... and, to stop, ensuring the output file is finished properly ...

[captureSession stopRunning];
[assetWriter finishWriting];
票数 54
EN

Stack Overflow用户

发布于 2017-01-05 19:14:38

这是Tommy答案的一个快速版本。

代码语言:javascript
复制
 // Set up the Capture Session 
 // Add the Inputs 
 // Add the Outputs


 var outputSettings = [
    AVVideoWidthKey : Int(640),
    AVVideoHeightKey : Int(480),
    AVVideoCodecKey : .h264
]

    var assetWriterInput = AVAssetWriterInput(mediaType: AVMediaTypeVideo,outputSettings: outputSettings)

    var pixelBufferAdaptor = AVAssetWriterInputPixelBufferAdaptor(assetWriterInput, sourcePixelBufferAttributes:
        [ kCVPixelBufferPixelFormatTypeKey : Int(kCVPixelFormatType_32BGRA)])


     var assetWriter = AVAssetWriter(url: URLFromSomwhere, fileType: AVFileTypeMPEG4 , error : Error )
         assetWriter.addInput(assetWriterInput)
         assetWriterInput.expectsMediaDataInRealTime = true
         assetWriter.startWriting()
         assetWriter.startSession(atSourceTime: kCMTimeZero)

    captureSession.startRunning()


  func captureOutput(_ captureOutput: AVCaptureOutput, didOutputSampleBuffer sampleBuffer: CMSampleBuffer, from connection: AVCaptureConnection) {

    var imageBuffer = CMSampleBufferGetImageBuffer(sampleBuffer)
    // a very dense way to keep track of the time at which this frame
    // occurs relative to the output stream, but it's just an example!
    var frameNumber: Int64 = 0

           if assetWriterInput.readyForMoreMediaData {
    pixelBufferAdaptor.appendPixelBuffer(imageBuffer, withPresentationTime: CMTimeMake(frameNumber, 25))
               }
                frameNumber += 1   }

      captureSession.stopRunning()
      assetWriter.finishWriting()

我不能保证100%的准确率,因为我是swift的新手。

票数 4
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/4944083

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档