zoukankan      html  css  js  c++  java
  • IOS读取mp3的摘要信息

     前一段一个朋友问我有没有方法在iPhone下读取mp3的缩略图,我去查查了文档果然是有方法的,写出来方便与大家交流。

     要知道怎么读取首先得知道它是存在哪的,经我了解发现mp3的摘要信息存储在mp3的开头或末尾的若干字节里。主流的格式是id3,还有itunes之类的。我们这次要读的就是id3,相关信息就自己去wiki或是百度百科去吧,我就不粘贴了。上代码:

      1     //取出资源文件下的所有mp3路径

    复制代码
     2     NSArray *mp3Array = [NSBundle pathsForResourcesOfType:@"mp3" inDirectory:[[NSBundle mainBundle] resourcePath]];
     3     for (NSString *filePath in mp3Array) {
     4         //IOS的资源路径封装,网络文件用urlWithPath:
     5         NSURL *fileURL = [NSURL fileURLWithPath:filePath];
     6         AVURLAsset *mp3Asset = [AVURLAsset URLAssetWithURL:fileURL options:nil];
     7         for (NSString *format in [mp3Asset availableMetadataFormats]) {
     8             NSLog(@"format type = %@",format);
     9             for (AVMetadataItem *metadataItem in [mp3Asset metadataForFormat:format]) {
    10                 NSLog(@"commonKey = %@",metadataItem.commonKey);
    11                 //artwork这个key对应的value里面存的就是封面缩略图,其它key可以取出其它摘要信息,例如title - 标题
    12                 if ([metadataItem.commonKey isEqualToString:@"artwork"]) {
    13                     NSData *data = [(NSDictionary*)metadataItem.value objectForKey:@"data"];
    14                     NSString *mime = [(NSDictionary*)metadataItem.value objectForKey:@"MIME"];
    15                     NSLog(@"mime = %@, data = %@, image = %@", mime, data, [UIImage imageWithData:data]);
    16                     break;
    17                 }
    18             }
    19         }
    复制代码  }

      

     这个读取方法,我认为是有缺陷的,我在mac下文件预览有封面缩略图的mp3有一些是用这方法读不出来的,如果有哪位朋友知道的话还望赐教。 

  • 相关阅读:
    2-字符串篇(4)
    1-数组篇(2)
    Neo4j-电影图(演员与电影之间的流行文化联系)
    NLP(相关资料)
    Oracle中的rank()函数使用
    PostgreSQL入门
    风格迁移论文理解--A Neural Algorithm of Artistic Style
    【Math】复数表示和傅里叶变换
    github资源使用--程序员必备
    【TF-2-3】Tensorflow-可视化(TensorBoard)
  • 原文地址:https://www.cnblogs.com/ligun123/p/2545352.html
Copyright © 2011-2022 走看看