从 Wav 文件中删除前 0.5 秒

发布于 2024-10-14 00:41:37 字数 28 浏览 6 评论 0原文

如何从 Wav 文件中删除前 0.5 秒?

How can I remove the first .5 of a second from Wav file?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

一腔孤↑勇 2024-10-21 00:41:37

这是格式。您需要打开文件,找到标题的大小,然后删除所需数量的样本。您可以在标头中找到每个样本的位数。采样率为 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

小梨窩很甜 2024-10-21 00:41:37

在 Google 上快速搜索后,发现了一个可能能够执行此操作的

A quick Google search turned up a library that may be able to do this.

浮华 2024-10-21 00:41:37

如果您需要以编程方式执行此操作,则需要一个 wav 文件解析器。一般算法是

A) open the file
b) find the fmt chunk
c) parse to calculate X =  bytes per sample * samples per second.
d) find the data chunk
e) remove the first X bytes
f) adjust the size of the data chunk
g) adjust the size of the initial RIFF chunk.
h) write the new file.

If you need to do it programatically, you need a wav file parser. The general algorithm would be

A) open the file
b) find the fmt chunk
c) parse to calculate X =  bytes per sample * samples per second.
d) find the data chunk
e) remove the first X bytes
f) adjust the size of the data chunk
g) adjust the size of the initial RIFF chunk.
h) write the new file.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文