我试图控制我应用制作的视频在iOS上的照片应用中的显示方式。我制作的所有视频都以黑框开始,然后淡入淡出等等。当这些视频保存到照片时,Apple会拍摄第一帧(黑色方块)并将其用作照片中的缩略图。我想更改此设置,以便我可以为人们设置自己的缩略图,以便轻松识别视频。
由于我无法找到任何内置的API,我试图通过添加我生成的缩略图作为视频的第一帧来破解它。我尝试使用AVFoundation,但遇到了一些问题。
我的代码抛出了以下错误:[AVAssetReaderTrackOutput copyNextSampleBuffer] cannot copy next sample buffer before adding this output to an instance of AVAssetReader (using -addOutput:) and calling -startReading on that asset reader'
,尽管已经调用了该方法。
这是我的代码:
AVAsset *asset = [[AVURLAsset alloc] initWithURL:fileUrl options:nil];
UIImage *frame = [self generateThumbnail:asset];
NSDictionary *videoSettings = [NSDictionary dictionaryWithObjectsAndKeys:
AVVideoCodecH264, AVVideoCodecKey,
[NSNumber numberWithInt:640], AVVideoWidthKey,
[NSNumber numberWithInt:360], AVVideoHeightKey,
nil];
AVAssetReader *assetReader = [AVAssetReader assetReaderWithAsset:asset error:nil];
AVAssetReaderOutput *readerOutput = [AVAssetReaderTrackOutput assetReaderTrackOutputWithTrack:[asset.tracks firstObject]
outputSettings:nil];
[assetReader addOutput:readerOutput];
AVAssetWriter *videoWriter = [[AVAssetWriter alloc] initWithURL:path
fileType:AVFileTypeMPEG4
error:nil];
NSParameterAssert(videoWriter);
AVAssetWriterInput* writerInput = [AVAssetWriterInput assetWriterInputWithMediaType:AVMediaTypeVideo
outputSettings:videoSettings];
AVAssetWriterInputPixelBufferAdaptor *adaptor = [AVAssetWriterInputPixelBufferAdaptor
assetWriterInputPixelBufferAdaptorWithAssetWriterInput:writerInput
sourcePixelBufferAttributes:nil];
NSParameterAssert(writerInput);
NSParameterAssert([videoWriter canAddInput:writerInput]);
[videoWriter addInput:writerInput];
[assetReader startReading];
[videoWriter startWriting];
[videoWriter startSessionAtSourceTime:kCMTimeZero];
CVPixelBufferRef buffer = [self pixelBufferFromCGImage:frame.CGImage andSize:frame.size];
BOOL append_ok = NO;
while (!append_ok) {
if (adaptor.assetWriterInput.readyForMoreMediaData) {
append_ok = [adaptor appendPixelBuffer:buffer withPresentationTime:kCMTimeZero];
CVPixelBufferPoolRef bufferPool = adaptor.pixelBufferPool;
NSParameterAssert(bufferPool != NULL);
[NSThread sleepForTimeInterval:0.05];
} else {
[NSThread sleepForTimeInterval:0.1];
}
}
CVBufferRelease(buffer);
dispatch_queue_t mediaInputQueue = dispatch_queue_create("mediaInputQueue", NULL);
[writerInput requestMediaDataWhenReadyOnQueue:mediaInputQueue usingBlock:^{
CMSampleBufferRef nextBuffer;
while (writerInput.readyForMoreMediaData) {
nextBuffer = [readerOutput copyNextSampleBuffer];
if(nextBuffer) {
NSLog(@"Wrote: %zu bytes", CMSampleBufferGetTotalSampleSize(nextBuffer));
[writerInput appendSampleBuffer:nextBuffer];
} else {
[writerInput markAsFinished];
[videoWriter finishWritingWithCompletionHandler:^{
//int res = videoWriter.status;
}];
break;
}
}
}];
我尝试了一些变化,但都无济于事。由于文件格式的原因,我也看到了一些崩溃。我使用的是mp4文件(不确定如何查找其压缩状态或是否支持),但即使使用未压缩的.mov文件,我也无法使其工作(使用Mac上的Photo Booth。
任何想法我做错了什么?
答案 0 :(得分:4)
遇到同样的问题。
您的assetReader会在ARC结束后释放。但是readerOutput的块读取缓冲区继续尝试读取内容。
当assetReader消失时,readerOutput与它断开连接,因此错误表明您需要将其连接回assetReader。
修复方法是确保不释放assetReader。例如。把它放在一个财产中。