Creating CMSampleBufferRef from the data

天大地大妈咪最大 提交于 2019-12-03 01:27:09

You should look into AVAssetWriterInputPixelBufferAdaptor - it accepts CVPixelBuffers so you don't need to convert the CVPixelBuffer in a CMSampleBuffer.

here is a link to a thread about it on the apple dev forum -> https://devforums.apple.com/thread/70258?tstart=0

Also - any chance you could post your project file or sample code of the capture movie working -- I am using the default CMSampleBuffer from the AVFoundation data output callback method - but when I save it to camera roll it is all black except the last 5 frames which I have to manually scrub to :S

any help in regards to my issue would be greatly appreciated.

Cheers,

Michael

    The operation couldn’t be completed. (AVFoundationErrorDomain error -11800.)

For this error, it always occur when timingInfo is invalid. it need set it to valid values with PTS and Duration.

CMSampleTimingInfo timingInfo = kCMTimingInfoInvalid;
timingInfo.presentationTimeStamp = pts; 
timingInfo.duration = duration;
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!