我在 iOS 文档中注意到,AVAssetWriterInput
您可以通过nil
字典outputSettings
来指定不应重新编码输入数据。
用于对附加到输出的媒体进行编码的设置。传递 nil 以指定不应重新编码附加的样本。
我想利用此功能传入原始 H.264 NAL 流,但我无法将原始字节流调整为CMSampleBuffer
可以传入 AVAssetWriterInputappendSampleBuffer
方法的流。我的 NAL 流仅包含 SPS/PPS/IDR/P NAL(1、5、7、8)。我无法找到有关如何将预编码的 H264 数据与 AVAssetWriter 一起使用的文档或结论性答案。生成的视频文件无法播放。
如何正确地将 NAL 单元打包成CMSampleBuffers
? 我需要使用起始代码前缀吗?长度前缀?我需要确保我只放一个 NALCMSampleBuffer
吗?我的最终目标是使用 H264/AAC 创建 MP4 或 MOV 容器。
这是我一直在玩的代码:
-(void)addH264NAL:(NSData *)nal
{
dispatch_async(recordingQueue, ^{
//Adapting the raw NAL into a CMSampleBuffer
CMSampleBufferRef sampleBuffer = NULL;
CMBlockBufferRef blockBuffer = NULL;
CMFormatDescriptionRef formatDescription = NULL;
CMItemCount numberOfSampleTimeEntries = 1;
CMItemCount numberOfSamples = 1;
CMVideoFormatDescriptionCreate(kCFAllocatorDefault, kCMVideoCodecType_H264, 480, 360, nil, &formatDescription);
OSStatus result = CMBlockBufferCreateWithMemoryBlock(kCFAllocatorDefault, NULL, [nal length], kCFAllocatorDefault, NULL, 0, [nal length], kCMBlockBufferAssureMemoryNowFlag, &blockBuffer);
if(result != noErr)
{
NSLog(@"Error creating CMBlockBuffer");
return;
}
result = CMBlockBufferReplaceDataBytes([nal bytes], blockBuffer, 0, [nal length]);
if(result != noErr)
{
NSLog(@"Error filling CMBlockBuffer");
return;
}
const size_t sampleSizes = [nal length];
CMSampleTimingInfo timing = { 0 };
result = CMSampleBufferCreate(kCFAllocatorDefault, blockBuffer, YES, NULL, NULL, formatDescription, numberOfSamples, numberOfSampleTimeEntries, &timing, 1, &sampleSizes, &sampleBuffer);
if(result != noErr)
{
NSLog(@"Error creating CMSampleBuffer");
}
[self writeSampleBuffer:sampleBuffer ofType:AVMediaTypeVideo];
});
}
请注意,在我实际尝试附加它之前,我使用我认为有效的时间调用方法CMSampleBufferSetOutputPresentationTimeStamp
内部的示例缓冲区。writeSampleBuffer
任何帮助表示赞赏。