iOS PhotoKit框架如何获取视频文件大小
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS PhotoKit框架如何获取视频文件大小相关的知识,希望对你有一定的参考价值。
// 获取相册中的资源
[group enumerateAssetsWithOptions:NSEnumerationReverse usingBlock:^(ALAsset *result, NSUInteger index, BOOL *stop) {
if (result) {
NSLog(@"-资源是否可编辑: %d", result.editable);
if ([[result valueForProperty:ALAssetPropertyType] isEqualToString:ALAssetTypeVideo]) {
NSLog(@"- 文件日期: %@", [result valueForProperty:ALAssetPropertyDate]);
NSLog(@"- 文件名称: %@", [[result defaultRepresentation] filename]);
NSLog(@"- 文件大小: %lld", [[result defaultRepresentation] size]);
NSLog(@"- 文件URL: %@", [[result defaultRepresentation] url]);
NSLog(@"- 文件缩略图: %@", [UIImage imageWithCGImage:[result thumbnail]]);
}
} else {
// result为nil, 即遍历资源(相片或视频)完毕, 可以展示资源列表
NSLog(@"遍历资源(相片或视频)完毕, 可以展示资源列表");
}
}];
以上是关于iOS PhotoKit框架如何获取视频文件大小的主要内容,如果未能解决你的问题,请参考以下文章
Xamarin - 是不是有与适用于 Android 的 Photokit (iOS) 类似的框架,或者是获取图库中所有图像的文件流的好方法?