gpt4 book ai didi

ios - 如何在 iOS 上从相机胶卷中获取特定时间间隔的视频?

转载 作者:行者123 更新时间:2023-11-30 12:54:49 24 4
gpt4 key购买 nike

我需要拍摄视频的特定时间间隔。例如;最后40秒。我已经找过了。但连一丝线索都找不到。

您能帮忙或告诉我一种方法吗?

BR,

最佳答案

这可能会帮助你:

        AVURLAsset *videoAsset = [AVURLAsset URLAssetWithURL:videoURL options:nil]; 


AVAssetExportSession *exportSession = [[AVAssetExportSession alloc] initWithAsset:videoAsset presetName:AVAssetExportPresetHighestQuality];
exportSession.outputURL = [NSURL fileURLWithPath:outputURL];
exportSession.outputFileType = AVFileTypeQuickTimeMovie;
CMTimeRange timeRange = CMTimeRangeMake(CMTimeMake(startMilliseconds, 1000), CMTimeMake(endMilliseconds - startMilliseconds, 1000));
exportSession.timeRange = timeRange;

[exportSession exportAsynchronouslyWithCompletionHandler:^{
switch (exportSession.status) {
case AVAssetExportSessionStatusCompleted:
// Custom method to import the Exported Video
[self loadAssetFromFile:exportSession.outputURL];
break;
case AVAssetExportSessionStatusFailed:
//
NSLog(@"Failed:%@",exportSession.error);
break;
case AVAssetExportSessionStatusCancelled:
//
NSLog(@"Canceled:%@",exportSession.error);
break;
default:
break;
}
}];

关于ios - 如何在 iOS 上从相机胶卷中获取特定时间间隔的视频?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40547675/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com