我正在尝试合并两个NSURLs
包含视频参考的内容。其中一个 url 指向 AWS 上的视频,另一个指向本地存储的视频。我的导出代码有效,因为我已经尝试使用两个本地视频,但是每当我尝试合并 HTTP url 和本地 url 时,我都会收到此错误:Error Domain=NSURLErrorDomain Code=-1100 "The requested URL was not found on this server." UserInfo=0x155d2f20 {NSUnderlyingError=0x155b4f60 "The operation couldn’t be completed. No such file or directory", NSLocalizedDescription=The requested URL was not found on this server.}
这是创建 AVAssets 的代码:
AVAsset *firstAsset = [AVAsset assetWithURL:awsURL];
是否AVAssetExportSession
需要使用本地网址?