NSURLs
ビデオ参照を含む2 つをマージしようとしています。URL の 1 つは AWS 上のビデオを指し、もう 1 つはローカルに保存されているビデオを指しています。私のエクスポート コードは、2 つのローカル ビデオで試したので機能しますが、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
ローカル URL を使用する必要がありますか?