Posts

Post not yet marked as solved
3 Replies
Had the same issue, what worked for me was requesting an AVAssetExportSession from PHCachingImageManager and using that to export my icloud video. Like this: Sorry for the old obj c code, it's a very old project. [self.imageManager requestExportSessionForVideo:asset options:videoOption exportPreset:AVAssetExportPresetPassthrough resultHandler:^(AVAssetExportSession * _Nullable exportSession, NSDictionary * _Nullable info) { // You might use the exporter here, or pass it along }];