我正在尝试学习Instagram API,我希望能够将图像和视频内容保存到我的相机胶卷中。到目前为止,图像代码工作正常,但我无法将视频保存到相机胶卷。这是我到目前为止的代码
- (void)downloadButtonPressed:(UIButton *)sender {
if ([self.mediaModel.mediaType isEqualToString:@"video"]) {
NSURL *videoURL = [NSURL URLWithString:_mediaModel.videoStandardResolutionURL];
if (UIVideoAtPathIsCompatibleWithSavedPhotosAlbum(videoURL.path)) {
NSLog(@"compatible");
} else {
NSLog(@"not compatible");
}
//UISaveVideoAtPathToSavedPhotosAlbum(videoPath, nil, nil, nil);
} else {
UIImageWriteToSavedPhotosAlbum(self.imageView.image, nil, nil, nil);
}
}
首先,我检查媒体类型是否为视频。如果没有,则图像可以直接保存。
如果不是,我检查videoURL.path是否兼容,但这是我卡住的地方,我得到这样的错误:
Video /hphotos-xaf1/t50.2886-16/11803693_1632141970376671_10815617_n.mp4 cannot be saved to the saved photos album: Error Domain=NSURLErrorDomain Code=-1100 "The requested URL was not found on this server." UserInfo=0x7f8b48f25d00 {NSUnderlyingError=0x7f8b48f39f90 "The operation couldn’t be completed. No such file or directory", NSErrorFailingURLStringKey=file:///hphotos-xaf1/t50.2886-16/11803693_1632141970376671_10815617_n.mp4, NSErrorFailingURLKey=file:///hphotos-xaf1/t50.2886-16/11803693_1632141970376671_10815617_n.mp4, NSURL=file:///hphotos-xaf1/t50.2886-16/11803693_1632141970376671_10815617_n.mp4, NSLocalizedDescription=The requested URL was not found on this server.}
真的很感激帮助。非常感谢!
答案 0 :(得分:4)
请勿尝试将其直接从网络保存到已保存的相册中。下载它(使用NSURLSession和下载任务)。然后将其从那里保存(即从您提供的本地文件URL)保存到已保存的相册中。