文档目录中 MP3 的 ID3 图稿标签 iPhone 开发

发布于 2024-11-29 01:07:52 字数 112 浏览 1 评论 0原文

我的用户文档目录中有几个 MP3 文件,我希望能够获取并显示 ID3 图稿标签。我尝试过使用 NSURLAsset,但我不确定如何将其转换为 UIImage 或 UIImageView!

谢谢!

I have several MP3 files in the user's documents directory, and I want to be able to get and display the ID3 Artwork Tags. I have tried using NSURLAsset, but I am unsure how to convert that to a UIImage or a UIImageView!

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我的痛♀有谁懂 2024-12-06 01:07:52

您必须使用 AVAsset类别:
例如:

NSString *mp3Path = [[NSBundle mainBundle] pathForResource:@"audio-file" ofType:@"mp3"];
NSURL *url = [NSURL fileURLWithPath:mp3Path];

AVAsset *asset = [AVURLAsset URLAssetWithURL:url options:nil];
for (NSString *format in [asset availableMetadataFormats]) {
    for (AVMetadataItem *item in [asset metadataForFormat:format]) {
        if ([[item commonKey] isEqualToString:@"artwork"]) {            
            NSData *data = [(NSDictionary *)[item value] objectForKey:@"data"];
            UIImageView *img = [[[UIImageView alloc] initWithImage:[UIImage imageWithData:data]] autorelease];
            [self.view addSubview:img];
            continue;
        }
        NSLog(@"%@", item);
    }
}
NSLog(@"> Duration = %.2f seconds", CMTimeGetSeconds(asset.duration));

You have to use the AVAsset class:
For instance:

NSString *mp3Path = [[NSBundle mainBundle] pathForResource:@"audio-file" ofType:@"mp3"];
NSURL *url = [NSURL fileURLWithPath:mp3Path];

AVAsset *asset = [AVURLAsset URLAssetWithURL:url options:nil];
for (NSString *format in [asset availableMetadataFormats]) {
    for (AVMetadataItem *item in [asset metadataForFormat:format]) {
        if ([[item commonKey] isEqualToString:@"artwork"]) {            
            NSData *data = [(NSDictionary *)[item value] objectForKey:@"data"];
            UIImageView *img = [[[UIImageView alloc] initWithImage:[UIImage imageWithData:data]] autorelease];
            [self.view addSubview:img];
            continue;
        }
        NSLog(@"%@", item);
    }
}
NSLog(@"> Duration = %.2f seconds", CMTimeGetSeconds(asset.duration));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文