• convert2Mp4 code snippet


    #pragma mark - helper

    - (NSURL *)convert2Mp4:(NSURL *)movUrl {

        NSURL *mp4Url = nil;

        AVURLAsset *avAsset = [AVURLAsset URLAssetWithURL:movUrl options:nil];

        NSArray *compatiblePresets = [AVAssetExportSession exportPresetsCompatibleWithAsset:avAsset];

        

        if ([compatiblePresets containsObject:AVAssetExportPresetHighestQuality]) {

            AVAssetExportSession *exportSession = [[AVAssetExportSession alloc]initWithAsset:avAsset

                                                                                  presetName:AVAssetExportPresetHighestQuality];

            mp4Url = [movUrl copy];

            mp4Url = [mp4Url URLByDeletingPathExtension];

            mp4Url = [mp4Url URLByAppendingPathExtension:@"mp4"];

            exportSession.outputURL = mp4Url;

            exportSession.shouldOptimizeForNetworkUse = YES;

            exportSession.outputFileType = AVFileTypeMPEG4;

            dispatch_semaphore_t wait = dispatch_semaphore_create(0l);

            [exportSession exportAsynchronouslyWithCompletionHandler:^{

                switch ([exportSession status]) {

                    case AVAssetExportSessionStatusFailed: {

                        NSLog(@"failed, error:%@.", exportSession.error);

                    } break;

                    case AVAssetExportSessionStatusCancelled: {

                        NSLog(@"cancelled.");

                    } break;

                    case AVAssetExportSessionStatusCompleted: {

                        NSLog(@"completed.");

                    } break;

                    default: {

                        NSLog(@"others.");

                    } break;

                }

                dispatch_semaphore_signal(wait);

            }];

            long timeout = dispatch_semaphore_wait(wait, DISPATCH_TIME_FOREVER);

            if (timeout) {

                NSLog(@"timeout.");

            }

            if (wait) {

                //dispatch_release(wait);

                wait = nil;

            }

        }

        

        return mp4Url;

    }

  • 相关阅读:
    2879. [NOI2012]美食节【费用流】
    luogu P1012 拼数
    luogu cover
    luogu cogs . [NOIP2003] 传染病控制 WA(1/2)
    luogu P1340 兽径管理 WA
    luogu P1342 请柬
    HTML学习笔记二
    HTML学习笔记一
    arr.sort()
    编写函数实现随机产生指定范围的整数的功能
  • 原文地址:https://www.cnblogs.com/Keys/p/4613488.html
Copyright © 2020-2023  润新知