Как получить файл Url of Slow motion video из Актива?

Я получаю URL файла обычного видео, но тип видео замедленного видео AVComposition, Я пытаюсь с AVAssetExportSession Но это отнимает много времени.

PHVideoRequestOptions *options=[[PHVideoRequestOptions alloc] init];
options.version = PHVideoRequestOptionsVersionCurrent;
options.networkAccessAllowed = YES;

[[PHImageManager defaultManager] requestAVAssetForVideo:asset options:options resultHandler:^(AVAsset *avAsset, AVAudioMix *audioMix, NSDictionary *info) {

     if(([avAsset isKindOfClass:[AVComposition class]] && ((AVComposition *)avAsset).tracks.count == 2)) {

         //Output URL of the slow motion file.
         NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
         NSString *documentsDirectory = paths.firstObject;
         NSString *myPathDocs =  [documentsDirectory stringByAppendingPathComponent:[NSString stringWithFormat:@"mergeSlowMoVideo-%d.mov",arc4random() % 1000]];
         NSURL *url = [NSURL fileURLWithPath:myPathDocs];

         //Begin slow mo video export
         AVAssetExportSession *exporter = [[AVAssetExportSession alloc] initWithAsset:avAsset presetName:AVAssetExportPresetHighestQuality];
         exporter.outputURL = url;
         exporter.outputFileType = AVFileTypeQuickTimeMovie;
         exporter.shouldOptimizeForNetworkUse = YES;

         [exporter exportAsynchronouslyWithCompletionHandler:^{

             dispatch_async(dispatch_get_main_queue(), ^{
                 if (exporter.status == AVAssetExportSessionStatusCompleted) {
                 }
             });
         }];
     } else if ([avAsset isKindOfClass:[AVURLAsset class]]) {
     }
 }];

1 ответ

PHImageRequestOptions.version значение свойства по умолчанию PHImageRequestOptionsVersionCurrent.

Просто назначьте версию PHImageRequestOptionsVersionUnadjusted или PHImageRequestOptionsVersionOriginal вернет исходное замедленное видео.

      PHImageRequestOptions * options = [[PHImageRequestOptions alloc] init];

options.version = PHImageRequestOptionsVersionUnadjusted;
// or 
options.version = PHImageRequestOptionsVersionOriginal;

Надеюсь, это кому-то будет полезно.

Другие вопросы по тегам