6

我想知道如何为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);

谢谢你的帮助!

4

1 回答 1

14

timeRangein属性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参考以了解计算所需确切时间的其他方法。

于 2012-05-27T10:46:44.273 回答