需要导入iOS自带的框架 AVFoundation
+ (NSUInteger)durationWithVideo:(NSURL *)videoUrl{
NSDictionary *opts = [NSDictionary dictionaryWithObject:@(NO) forKey:AVURLAssetPreferPreciseDurationAndTimingKey];
AVURLAsset *urlAsset = [AVURLAsset URLAssetWithURL:videoUrl options:opts]; // 初始化视频媒体文件
NSUInteger second = 0;
second = urlAsset.duration.value / urlAsset.duration.timescale; // 获取视频总时长,单位秒
return second;
}
有个疑问?:这个方法就是获取不了 avi 格式的视频文件的时长,有知道的同学可以留言告诉我一下。
网友评论