我想知道如何从时间戳中为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);
感谢您的帮助!
答案 0 :(得分:12)
timeRange
中的属性AVAssetExportSession
允许您对资产进行部分导出,指定从哪里开始和持续时间。如果没有指定,它将导出整个视频,换句话说,它将从零开始并将导出总持续时间。
开始和持续时间都应表示为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
参考,了解计算所需时间的其他方法。