如何向 WAV 文件添加元数据?
我正在寻找一些示例代码来向我展示如何将元数据添加到我们创建的 wav 文件中。 有人吗?
I'm looking for some sample code to show me how to add metadata to the wav files we create.
Anyone?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
一种选择是添加您自己的具有唯一 ID 的块。大多数 WAV 播放器都会忽略它。
另一个想法是使用一个
labl
块,与文件开头或结尾处的 que 集关联。您还需要一个que
块。 请参阅此处参考数据写入方法很简单
"RIFF “
。写入的字节数。
数字)。
如果您要将内容添加到现有的
list
块中,情况会稍微复杂一些,但同样的原则也适用。One option is to add your own chunk with a unique id. Most WAV players will ignore it.
Another idea would to be use a
labl
chunk, associated with a que set at the beginning or end of the file. You'd also need aque
chunk. See here for a referenceHow to write the data is simple
"RIFF"
.count of bytes written.
number).
It's slightly more complicated if you are adding things to an existing
list
chunk, but the same principle applies.如果您检查 wave 文件规范,您会发现没有似乎有空间进行任何类型的注释。一种选择是使用您自己的格式包装波形文件,其中包括自定义信息,但您实际上会创建一种全新的格式,没有您的应用程序的用户将无法读取该格式。但你可能对此没意见。
If you examine the wave file spec you'll see that there does not seem to be room for annotations of any kind. An option would be to wrap the wave file with your own format that includes custom information but you would in effect be creating a whole new format that would not be readable by users who do not have your app. But you might be ok with that.
也许 nist 文件格式会给你你想要的:
NIST
这是一个可以提供帮助的库,但恐怕它看起来老的。 NIST Lib
现在找不到更多有用的信息如何准确地使用它,恐怕我公司的信息文件必须留在那里。 :L/
Maybe the nist file format will give you what you want:
NIST
Here is a lib that could help, but im afraid it looks old. NIST Lib
Cant find more useful information right now how exactly to use it, and im afraid the information papers from my company must stay there. :L/
尝试下面的代码
http://alvas.net/alvas .audio,articles.aspx#id3-tags-for-wave-files
Try code below
from http://alvas.net/alvas.audio,articles.aspx#id3-tags-for-wave-files