在 mp3 标头中写入新的 id3v2 标签 (actionscript-3)
您好,是否可以通过动作脚本将新的 id3v2 标签写入 mp3 文件? 通常您可以读取/写入艺术家、专辑、流派等标签... 但我想添加例如标签“atmosphere = smooth”。
谢谢
Hello is it possible to write new id3v2 tags to a mp3-file through actionscript?
Normally you can read/write tags like artist,album,genre...
But I would like to add for example the tag "atmosphere = smooth".
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不幸的是,没有一个工作库可以在 ActionScript 中编写/编辑 ID3 标签,或者至少我不知道有一个。
但您可以以 ByteArray 的形式访问和编辑该文件。检查 ID3v2.3 规范 以找出要读取和写入的字节。
sourceforge 上有一个名为 id3lib 的 ac/c++ 项目。如果您考虑使用 Alchemy 将其移植到 ActionScript,我会对最终的产品非常感兴趣;)
Unfortunately, there is no working library to write/edit ID3 tags in ActionScript, or at least I wouldn't know of one.
But you can access and edit the file as ByteArray. Check the ID3v2.3 specification to find out which bytes to read and write.
There is a c/c++ project called id3lib on sourceforge. Should you consider porting this to ActionScript using Alchemy, I would be very much interested in the resulting product ;)