PHAsset ビデオを iCloud からアプリの一時ディレクトリにダウンロードしたいと考えています。それが可能である場合、それを行う方法は?
質問する
908 次
1 に答える
2
このコードで開始できます。
PHImageManager* manager = [PHImageManager defaultManager];
PHVideoRequestOptions* requestOptions = [PHVideoRequestOptions new];
requestOptions.networkAccessAllowed = YES;
requestOptions.progressHandler = ^(double progress, NSError* error, BOOL* stop, NSDictionary* info) {
NSLog(@"cacheAsset: %f", progress);
};
[manager requestExportSessionForVideo:inAsset
options:requestOptions
exportPreset:AVAssetExportPresetPassthrough resultHandler:^(AVAssetExportSession* exportSession, NSDictionary* info) {
exportSession.outputURL = url;
exportSession.outputFileType = AVFileTypeQuickTimeMovie;
[exportSession exportAsynchronouslyWithCompletionHandler:^{
// Do something here with the result. Make sure to check the info dictionary for additional status.
}];
}];
于 2015-11-09T23:08:57.863 に答える