Java读取wav文件

发布于 2024-10-20 16:17:35 字数 171 浏览 1 评论 0原文

我想用 Java 读取 wav 文件,并且将使用 K-means 对它们进行分类。

我怎样才能读取Java中的wav文件并将它们分配到一个数组或类似的东西(你可以建议它的想法)来对它们进行分类?

编辑:我想使用 API 来读取 wav 文件和 K-means。

I want to read wav files in Java and I am going to classify them with K-means.

How can I read wav files in Java and assign them into an array or something like that(you can suggest ideas for it) to classify them?

EDIT: I want to use APIs for reading wav files and for K-means.

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

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

发布评论

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

评论(4

我的鱼塘能养鲲 2024-10-27 16:17:35

官方 Java Sound 程序员指南逐步阅读编写音频文件。

A Greensted 的这篇文章:用 java 读取和写入 Wav 文件 应该会有所帮助。 WavFile 类非常有用,可以对其进行调整以返回整个数据数组而不是缓冲的片段。

The official Java Sound Programmer Guide walks through reading and writing audio files.

This article by A Greensted: Reading and Writing Wav Files in java should be helpful. The WavFile class is very useful and it can be tweaked to return the entire data array instead of buffered fragments.

水溶 2024-10-27 16:17:35

您可以使用 javax sound 库和 FileInputStream 读取声音文件
在这里找到了一个很好的示例
并将波形文件视为位(0,1)或字节的向量..使用多序列对齐( Wiki)在每个位/字节流之间创建一个距离矩阵,从那里开始,聚类应该是直接的。

问题是,这种方法对噪声等非常敏感,但值得一试......

You could read the sound files using javax sound library and FileInputStream
(found a nice example here)
and treat the wave files as a vector of bits (0,1) or bytes.. using multiple sequence alignment (Wiki) create a distance matrix between every stream of bits/bytes, and from there, the clustering should be straight forward.

The Problem is, that this method is very sensitive to noise, etc, but it is worth a shot...

梦言归人 2024-10-27 16:17:35

不确定这是否会对某人有帮助。 Java JDK已经提供了 AudioSystem 类。

我用它作为测试的一部分来检查生成的 WAV 属性,

AudioFileFormat audioFileFormat = AudioSystem.getAudioFileFormat(new File(response.get()));
assertEquals(1, audioFileFormat.getFormat().getChannels());
assertEquals(8000.0, audioFileFormat.getFormat().getSampleRate(), 0.0f);
assertEquals(8, audioFileFormat.getFormat().getSampleSizeInBits());

Not sure if this will help someone. Java JDK already provides AudioSystem class.

I used this as part of my tests to check generated WAV properties,

AudioFileFormat audioFileFormat = AudioSystem.getAudioFileFormat(new File(response.get()));
assertEquals(1, audioFileFormat.getFormat().getChannels());
assertEquals(8000.0, audioFileFormat.getFormat().getSampleRate(), 0.0f);
assertEquals(8, audioFileFormat.getFormat().getSampleSizeInBits());
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文