如何在java中生成不同分贝的纯音?
我需要在java中生成不同级别的分贝(dB)的纯音。有没有关于如何执行此操作的示例?
i need to generate pure tones with different levels of decibels (dB) in java. is there any example of how to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 midi 合成器生成音调
您可以使用合成器生成音调:
您可以在其中设置通道的音量,使用
http://www.springworldgames.com/rmleditor/javadoc/com/springworldgames/music/MidiUtils.html#getSetChannelVolumeMessage(int, int)
我不知道如何将其转换为分贝,也许这取决于您的声卡的音量级别。
Tones with midi Synth
You can generate tones with the synth :
Where you can set up the volume of the channels, with
http://www.springworldgames.com/rmleditor/javadoc/com/springworldgames/music/MidiUtils.html#getSetChannelVolumeMessage(int, int)
I don't know how to convert it to decibels, maybe it depends on your sound-card's volume level.
此 http://jsresources.org/examples/OscillatorPlayer.html 展示了如何创建纯正弦曲线 (或几乎任何其他)波形并播放它们。至于分贝,它们与幅度的关系是
db ~ 20 * log10 (amplitude)
,即amplitude ~ 10 ^ (dB/20)
,所以只需从中计算即可。This http://jsresources.org/examples/OscillatorPlayer.html shows how to create pure sinusoidal (or pretty much any other) waveforms and play them. As for decibels, their relation to amplitude is
db ~ 20 * log10 (amplitude)
, i.e.amplitude ~ 10 ^ (dB/20)
, so just calculate from that.