WAV 文件分割器实用程序

发布于 2024-08-15 02:43:41 字数 573 浏览 8 评论 0原文

我有一个编程任务(家庭作业)来研究强力神经网络方法。这部分问题是我的作业。

我们必须证明,在口头转换中重复的某些简单单词可能能够被识别为相似的。我们不必弄清楚这个词是什么,只要知道它可能重复即可。为了限制我的“搜索空间”,我想将 WAV 文件分成多个片段。为了避免“Donald Knuth”综合症,我不想将精力转移到学习 RMS、频率分析的傅里叶分析等上。

所以我正在寻找一个基于 Windows 的实用程序来分割 wav 文件。我看过一个名为 GramoFile.exe 的程序。它在分解黑胶唱片的 LP 歌曲级别上效果很好,但在小的语音片段上效果不佳。它是一个具有 DOS 版本的 Linux 实用程序。它仅限于分割成 99 个文件。我尝试分割成 99 个片段,然后通过 GramoFile.exe 运行第一个、第二个等分割文件,但没有成功。它无法处理单词之间极小的停顿。

大家有什么建议吗?

I have a PROGRAMMING task (homework) to investigate brute force neural net methods. That part of the problem is MY homework.

We have to show that certain simple words repeated in a verbal conversion might be able to be recognized as similar. We don’t have to workout what the word is, just that it is a possible repeat. To limit my ‘search space’ I want to break up the WAV file into fragments. To avoid the ‘Donald Knuth’ syndrome I don’t want to divert energies into learning RMS, Fourier analysis for frequency profiling etc.

So I am looking for a windows based util to split wav files. I have looked at one called GramoFile.exe. It works well at the LP song level of breaking up vinyl platter recordings, but not at the small speech fragments. It is a Linux util with a DOS version. It is limited to split into 99 files only. I have tried to split to 99 fragments then run the first, second, etc split files through the GramoFile.exe but no luck. It can’t deal will the infinitesimal pauses between words.

Any suggestions people ?

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

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

发布评论

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

评论(2

北恋 2024-08-22 02:43:41

wav 非常简单。

这是我之前编写的 c# 片段,用于将 wav 读入两个数组(左、右通道)。一旦你有了它,你就可以按照你喜欢的方式分割它。移植到您选择的语言应该不难。

C# 中 .wav 的平均振幅

A wav is pretty simple.

Here is a c# snippet I wrote earlier to read in a wav into two arrays (left, right channel). Once you have it there you can split it any way you like. It should not be hard to port to your language of choice.

Mean amplitude of a .wav in C#

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文