首页 > 代码库 > iOS PhotoKit框架如何获取视频文件大小
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框架如何获取视频文件大小