在我的应用程序中,我正在使用AVAssetReader
→AVAssetWriter
组合处理视频。
当应用程序被发送到后台时,我会暂停视频写入(因此也不再阅读)。再次进入前台时,我想继续该过程。但是,当我尝试copyNextSampleBuffer
从阅读器的输出中读取时,阅读器失败并出现以下错误:
Error Domain=AVFoundationErrorDomain Code=-11800 "The operation could not be completed"
UserInfo={NSUnderlyingError=0x170256d40 {Error Domain=NSOSStatusErrorDomain Code=-12131 "(null)"},
NSLocalizedFailureReason=An unknown error occurred (-12131),
NSLocalizedDescription=The operation could not be completed}
在应用程序暂停一段时间后,我有什么办法可以继续阅读资产样本?
12131
PS:我在任何框架头文件中也找不到错误代码...