创建AVAssetExportSession的时间范围(Creating a time range

2019-07-29 14:24发布

我想知道如何使一个时间范围AVAssetExportSession从时间标记,如:

NSTimeInterval start = [[NSDate date] timeIntervalSince1970];
NSTimeInterval end = [[NSDate date] timeIntervalSince1970];

我使用我的出口会话的代码如下:

AVAssetExportSession *exportSession = [[AVAssetExportSession alloc] initWithAsset:asset presetName:AVAssetExportPresetHighestQuality];

exportSession.outputURL = videoURL;
exportSession.outputFileType = AVFileTypeQuickTimeMovie;
exportSession.timeRange = CMTimeRangeFromTimeToTime(start, end);

谢谢你的帮助!

Answer 1:

该物业timeRangeAVAssetExportSession允许你做一个资产指定的部分出口从哪里开始和持续时间。 如果没有指定,它会导出整个视频,换句话说,它会从零开始,并会出口总时长。

双方开始和持续时间应表示为CMTime

举例来说,如果你想将资产上半年出口:

CMTime half = CMTimeMultiplyByFloat64(exportSession.asset.duration, 0.5);
exportSession.timeRange = CMTimeRangeMake(kCMTimeZero, half);

或第二半:

exportSession.timeRange = CMTimeRangeMake(half, half);

秒或10秒末:

CMTime _10 = CMTimeMakeWithSeconds(10, 600);
CMTime tMinus10 = CMTimeSubtract(exportSession.asset.duration, _10);
exportSession.timeRange = CMTimeRangeMake(tMinus10, _10);

检查CMTime其他方法来计算你需要的确切时间参考。



文章来源: Creating a time range for AVAssetExportSession