如何使用 JavaSound (Java, Java Sound) 从 .wave 文件读取信息

发布于 2024-12-02 10:25:37 字数 90 浏览 1 评论 0原文

您好,我需要从 .wave 文件中读取 SampleRate、SignalFrequency 和 Amplitude。我怎样才能使用 JavaSound 做到这一点?

Hi I need to read SampleRate, SignalFrequency and Amplitude from .wave file. How can I do that using JavaSound?

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

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

发布评论

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

评论(1

不甘平庸 2024-12-09 10:25:37

您可以通过获取 AudioFormat 对象的句柄来获取采样率:

AudioInputStream audioInputStream = AudioSystem.getAudioInputStream(new File("test.wav"));
AudioFormat audioFormat = audioInputStream.getFormat();

一旦获得该句柄,您就可以获取采样率,如下所示:

float sampleRate = audioFormat.getSampleRate();

至于幅度,这基本上是原始 .wav 文件数据,您可以通过调用任何 read() 方法从 audioInputStream 直接访问它。

You can get the sampling rate by getting a handle on the AudioFormat object:

AudioInputStream audioInputStream = AudioSystem.getAudioInputStream(new File("test.wav"));
AudioFormat audioFormat = audioInputStream.getFormat();

Once you have that, you can get the sample rate as follows:

float sampleRate = audioFormat.getSampleRate();

As for the amplitude, that is basically the raw .wav file data, which you can access directly from the audioInputStream by calling any of its read() methods.

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