【发布时间】:2013-08-09 02:15:07
【问题描述】:
我正在尝试合并两个包含视频参考的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.}
这是创建 AVAsset 的代码:
AVAsset *firstAsset = [AVAsset assetWithURL:awsURL];
AVAssetExportSession 是否需要使用本地网址?
【问题讨论】:
标签: iphone ios objective-c avfoundation