如何用Java处理声音?

发布于 2024-08-17 09:27:36 字数 108 浏览 5 评论 0原文

我必须用 Java 实现 LPC(线性预测编码)算法,坦白说,我不知道从哪里开始。有人可以指出我正确的方向吗?我不能。当然,使用 java sound api 中已经实现的算法(如果它提供了解决方案)。

I have to implement the LPC (linear predictive coding) Algorithm with Java and quiet frankly don't have a clue where to start. Could someone please point me into a right direction.. I can't. of course, use already implemented algorithms from the java sound api (if its provides a solution).

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

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

发布评论

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

评论(1

梦归所梦 2024-08-24 09:27:36

Java 带有 AudioInputStream
您可以通过调用 avax.sound.sampled.AudioSystem.getAudioInputStream(File f) 来获取 inputStream。

AudioInputStream 有一个 read() 方法来读取数据。也许,您会想要读取所有数据,对其执行某些操作并将其存储回文件中......

Java comes with an AudioInputStream.
You can get the inputStream by calling avax.sound.sampled.AudioSystem.getAudioInputStream(File f).

The AudioInputStream has a read() method which reads the data. Probably, you will want to read all the data, do something with it and store it back to a file...

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