我想拍摄一些视频帧并将其编码为视频。看起来AVAssetWriter
就是这个意思,但是无论我如何看待文档和Google,我都找不到实际使用它的任何方法。从文档看来,我需要输入(AVAssetWriterInput
)来提供作者信息。美好的。但是AVAssetWriterInput
类是抽象的,我在4.1中知道的唯一子类是AVAssetWriterInputPixelBufferAdaptor
,它的初始化程序中需要AVAssetWriterInput
…?我在这里遗漏明显的东西吗?
最佳答案
是的,我必须使用+[AVAssetWriterInput assetWriterInputWithMediaType:outputSettings:]
获取一个实例,有关详细代码示例,请在其他问题下查看我的post。
关于ios - 如何使用AVAssetWriter?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3728311/