当前位置:   article > 正文

MacOS 开发 — 读取文件/视频 信息_mac os 读取系统文件

mac os 读取系统文件

macOS 开发 — 读取文件/视频 信息

在开发过程中我们或许需要,在文件未打开的情况下读取文件信息。或者在视频加载前读取视频编码格式,以及视频的尺寸等等。以下提供三种Object-c macOS下的实现方法:

NSFileManager 读取文件信息
-(void)getFileInfo:(NSString *)path{
    NSFileManager *manger = [NSFileManager defaultManager];
    NSDictionary *dic= [manger attributesOfItemAtPath:path error:nil];
    NSLog(@"%s: \n %@",__func__,dic);
}
  • 1
  • 2
  • 3
  • 4
  • 5

请添加图片描述

AVURLAsset 读取文件信息
-(void)getVideoWithAsset:(NSString *)path
{
    NSLog(@"%s",__func__);
    AVURLAsset *asset = [[AVURLAsset alloc] initWithURL:[NSURL fileURLWithPath:path] options:nil];
    NSArray *metaArray = [asset commonMetadata];
    NSArray *assetTrack = [asset tracks];
    for ( AVMetadataItem *item in metaArray)
        NSLog(@"\n %@",item);
    
    for (AVAssetTrack *track in assetTrack) {
        NSLog(@" %f,%f",track.naturalSize.height,track.naturalSize.width);
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13

请添加图片描述

系统自带的 mdls 脚本 读取文件信息
-(void)getVideoInfoWithShell:(NSString *)path{

    NSTask *task;
    task = [[NSTask alloc] init];
    [task setLaunchPath: @"/usr/bin/mdls"];
    
    NSArray *arguments;
    arguments = [NSArray arrayWithObjects:path, nil];
    [task setArguments: arguments];
    
    NSPipe *pipe;
    pipe = [NSPipe pipe];
    [task setStandardOutput: pipe];
    
    NSFileHandle *file;
    file = [pipe fileHandleForReading];
    
    [task launch];
    
    NSData *data;
    data = [file readDataToEndOfFile];
    
    NSString *string;
    string = [[NSString alloc] initWithData: data
                                   encoding: NSUTF8StringEncoding];
    NSLog (@"%s: \n%@",__func__, string);
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27

请添加图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/836078
推荐阅读
相关标签
  

闽ICP备14008679号