从 Wav 文件中删除前 0.5 秒
如何从 Wav 文件中删除前 0.5 秒?
How can I remove the first .5 of a second from Wav file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何从 Wav 文件中删除前 0.5 秒?
How can I remove the first .5 of a second from Wav file?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
这是格式。您需要打开文件,找到标题的大小,然后删除所需数量的样本。您可以在标头中找到每个样本的位数。采样率为 44100 Hz 的 16 位 WAV 文件需要删除
(16/8) * 44100 * 0.5 = 44100 字节
Here is the format. You need to open up the file, find the size of the header, then remove the required number of samples. You can find the number of bits per sample in the header. A 16-bit WAV file at a sampling rate of 44100 Hz would require you to remove
(16/8) * 44100 * 0.5 = 44100 bytes
在 Google 上快速搜索后,发现了一个可能能够执行此操作的库。
A quick Google search turned up a library that may be able to do this.
如果您需要以编程方式执行此操作,则需要一个 wav 文件解析器。一般算法是
If you need to do it programatically, you need a wav file parser. The general algorithm would be