如何在objective-c中编辑mp3 ID3标签
我正在尝试在 Objective-C 中编辑一些 mp3 ID3 标签。到目前为止,我还没有比开始时更进一步。我看过 tagLib 但我似乎无法把它放到我的项目中。好吧,我不知道我必须添加哪些文件。 也许是教程?
使用苹果 AudioFileSetProperty()
也不起作用。我能够读取标签,但在写入时出现此错误:pty?
。我不是唯一一个遇到这个问题的人: stackoverflow.com
那么有人知道“简单的”吗? “ID3库?它不需要只是 Objective-c,因为我正在为 Mac 开发。
谢谢!
I'm trying to edit some mp3 ID3 tags in objective-c. So far I haven't managed to get any further then when I started. I have had a look at the tagLib but I can't seem to get it into my project. Well, I don't know which files I have to add. A tutorial maybe?
Using apples AudioFileSetProperty()
also didn't work. I was able to read the tags though but when writing i got this error: pty?
. I am not the only one with this problem: stackoverflow.com
So does anyone know an "easy" ID3 library? It doesn't need to be Objective-c only as I am developing for the Mac.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我自己很快就会解决这个问题。
我计划使用的是 AVFoundation。这是针对 10.7 或更高版本的,这是唯一的缺点。
否则,您只需将会话导出到 AVURLAsset。当我进入这个话题时,我会发布更多内容。
I am going to tackle this soon myself.
What I plan on using is AVFoundation. This is for 10.7 or greater, that is the one downfall.
Otherwise you just export a session to an AVURLAsset. Will post more as I get into this.