用于声音处理的 Java 库
我有一个 .pcm 文件,其中包含我想添加不同效果的声音。我正在寻找一种简单的方法(最好是一个库)来帮助我实现这些效果。
我的首要任务是改变音频的音高。
我想要一个接受字节数组(或浮点数)的函数,并更改该数组中音频的音高。
I have a .pcm file with a sound that I would like to add different effects to. What I am looking for is a simple way (prefeably a library) that can help me with these effects.
My top priority is to change the pitch of the audio.
I would like a function that takes a byte array (or float), and changes the pitch of the audio in that array.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Java 有一个 API 用于处理 WAV 和 MIDI 文件,它默认包含在 JDK 中。
这是java声音的文档API。
Java has an API for dealing with WAV and MIDI files, it's included in the JDK by default.
This is the documentation for the java sound API.