如何将 UIImage 或 CGImage 附加到 AVAssetWriter?
是否可以将 UIImage 实例转换为 CMSampleBufferRef,以便可以使用 AVAssetWriter 的appendSampleBuffer: 方法将其附加到指定的输出文件?
如果是这样...怎么办?
谢谢
Is it possible to convert a UIImage instance to a CMSampleBufferRef so that it can be appended to a specified output file using AVAssetWriter's appendSampleBuffer: method?
If so ... how?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
虽然我还没有真正尝试过,但一种可能性是使用 CVPixelBufferCreateWithBytes,并将其指向
完成此操作后,由于
CVPixelBuffers
只是CVImageBuffers
,您可以使用CMSampleBufferCreateForImageBuffer
来获取CMSampleBufferRef
,然后您就可以使用appendSampleBuffer方法。正如我之前所说,我从未尝试过此操作,但看起来似乎可行。
While I haven't really tried this one possibility is to create a
CVPixelBuffer
using CVPixelBufferCreateWithBytes, and pointing it to the raw pixels from the UIImage.Once this is done, since
CVPixelBuffers
are justCVImageBuffers
you can useCMSampleBufferCreateForImageBuffer
to get aCMSampleBufferRef
that you can then use the appendSampleBuffer method.As I said previously I haven't ever tried this, but it looks plausible.