0

録画を停止せずに、録画から一定時間ごとにミニビデオを作成するにはどうすればよいでしょうか? ビデオの AvAssetImageGenerator に相当するものを探してみました。例がいいでしょう。

4

1 に答える 1

3

最も簡単な方法は、2 つを使用AVAssetWritersして、現在のライターが記録している間に次のライターをセットアップし、x 時間後に停止してライターを交換することです。フレームをドロップせずにライターを交換できるはずです。

編集:

AVAssetWriter「ジャグリング」のやり方

手順 1: ライターとピクセル バッファー アダプターのインスタンス オブジェクトを作成します (これらのファイルのファイル名も知っておく必要があります)。

AVAssetWriter*                        mWriter[2];
AVAssetWriterInputPixelBufferAdaptor* mPBAdaptor[2];
NSString*                             mOutFile[2];
int                                   mCurrentWriter, mFrameCount, mTargetFrameCount;

ステップ 2: ライターをセットアップするためのメソッドを作成します (これを何度も行うため)

-(int) setupWriter: (int) writer
{
NSAutoreleasePool* p = [[NSAutoreleasePool alloc] init];

NSDictionary* writerSettings = [NSDictionary dictionaryWithObjectsAndKeys: AVVideoCodecH264, AVVideoCodecKey, [NSNumber numberWithInt: mVideoWidth], AVVideoWidthKey, [NSNumber numberWithInt: mVideoHeight], AVVideoHeightKey, nil];
NSDictionary* pbSettings = [NSDictionary dictionaryWithObjectsAndKeys: [NSNumber numberWithInt:mVivdeoWidth],kCVPixelBufferWidthKey,
                        [NSNumber numberWithInt:mVideoHeight], kCVPixelBufferHeightKey,
                        [NSNumber numberWithInt:0],kCVPixelBufferExtendedPixelsLeftKey,
                        [NSNumber numberWithInt:0],kCVPixelBufferExtendedPixelsRightKey,
                        [NSNumber numberWithInt:0],kCVPixelBufferExtendedPixelsTopKey,
                        [NSNumber numberWithInt:0],kCVPixelBufferExtendedPixelsBottomKey,
                        [NSNumber numberWithInt:mVideoWidth],kCVPixelBufferBytesPerRowAlignmentKey,
                        [NSNumber numberWithUnsignedInt:kCVPixelFormatType_420YpCbCr8BiPlanarVideoRange], kCVPixelBufferPixelFormatTypeKey, nil];

AVAssetWriterInput* writerInput = [AVAssetWriterInput assetWriterWithMediaType: AVMediaTypeVideo outputSettings: writerSettings];
// Create an audio input here if you want...
mWriter[writer] = [[AVAssetWriter alloc] initWithURL: [NSURL fileURLWithPath:mOutfile[writer]] fileType: AVFileTypeMPEG4 error:nil];

mPBAdaptor[writer] = [[AVAssetWriterInputPixelBufferAdaptor alloc] initWithAssetWriterInput: writerInput sourcePixelBufferAttributes: pbSettings];

[mWriter[writer] addInput: writerInput]; 
// Add your audio input here if you want it
[p release];
}

ステップ 3: これらのものを取り壊さなければなりません!

- (void) tearDownWriter: (int) writer 
{
if(mWriter[writer]) {

   if(mWriter[writer].status == 1) [mWriter[writer] finishWriting]; // This will complete the movie.
   [mWriter[writer] release]; mWriter[writer] = nil;
   [mPBAdaptor[writer] release]; mPBAdaptor[writer] = nil;
}

}

ステップ4:交換!現在のライターを破棄し、他のライターが書き込みを行っている間に非同期で再作成します。

- (void) swapWriters
{
 NSAutoreleasePool * p = [[NSAutoreleasePool alloc] init];
 if(++mFrameCount > mCurrentTargetFrameCount) 
 { 
    mFrameCount = 0;
    int c, n;
    c = mCurrentWriter^1;
    n = mCurrentWriter;  // swap.

    [self tearDownWriter:n];
    __block VideoCaptureClass* bSelf = self;
    dispatch_async(dispatch_get_global_queue(0,0), ^{
      [bSelf setupWriter:n];
              CMTime time;
    time.value = 0;
    time.timescale = 15; // or whatever the correct timescale for your movie is
    time.epoch = 0;
    time.flags = kCMTimeFlags_Valid;
    [bSelf->mWriter[n] startWriting];
    [bSelf->mWriter[n] startSessionAtSourceTime:time];
    });
    mCurrentWriter = c;
 } 

[p release];
}

注: 起動時には、両方のライターを作成して起動する必要があります。

ステップ 5: 出力のキャプチャー

   - (void)captureOutput:(AVCaptureOutput *)captureOutput didOutputSampleBuffer:(CMSampleBufferRef)sampleBuffer fromConnection:(AVCaptureConnection *)connection {
   // This method will only work with video; you'll have to check for audio if you're using that.
   CMTime time = CMSampleBufferGetPresentationTimeStamp(sampleBuffer); // Note: you may have to create your own PTS.

   CVImageBufferRef pixelBuffer = CMSampleBufferGetImageBuffer(sampleBuffer);

   [mPBAdaptor[mCurrentWriter] appendPixelBuffer:pixelBuffer withPresentationTime: time];

   [self swapBuffers];
  }

必要ない場合は、おそらくピクセル バッファー アダプターをスキップできます。これにより、やりたいことを行う方法のおおよそのアイデアが得られるはずです。 mTargetFrameCount現在のビデオの長さを何フレームにするかを表します。オーディオについては、おそらくさらに考慮が必要です。オーディオを使用している場合は、ビデオ ストリームではなく、オーディオ ストリームに基づいて長さを設定することをお勧めします。

于 2012-08-20T20:57:38.480 に答える