Objective-C ID3框架?
我正在尝试添加/替换 MP3 文件的专辑封面。有没有 Objective-C 框架可以让我做到这一点?如果没有,最好的方法是什么?我不介意使用 C 或 C++,但如果使用 Objective-C 就更好了。谢谢!
更新:我找到了一个名为 SFBAudioEngine 的音频框架,它可以编辑多种音频格式的元数据,但是当我在其中编译示例项目时,出现 2094 错误。
I am trying to add/replace album art of MP3 files. Is there an Objective-C framework that will allow me to do this? If not, what the best way to do this? I don't mind using C or C++ but it's better if it's in Objective-C. Thanks!
Update: I found an audio framework called SFBAudioEngine which can edit metadata of several audio formats but when I compile the sample project in it, I get 2094 errors.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于 Objective-C 是 C 本身的严格超集,因此我建议编译一个处理 ID3 标签的库(id3lib或libid3tag 浮现在脑海中)并直接使用它们的功能或围绕它们提供的功能构建一个类。祝你好运!
Since Objective-C is a strict superset of C itself, I would suggest compiling a library that handles ID3 tags (id3lib or libid3tag come to mind) and use their functions directly or build a class around what they provide. Good luck!