在我的应用中,我正在使用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}
在应用程序暂停一段时间后,有什么办法可以继续阅读资产样本吗?
PS:我也无法在任何框架标题中找到错误代码12131
...