网络音频 API WaveShaperNode
如何在网络音频API中使用waveshapernode?特别是曲线 Float32Array 属性?
How do you use the waveshapernode in the web audio api? particular the curve Float32Array attribute?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请随意查看此处的示例。
详细地说,我使用此函数创建一条波形整形器曲线:
然后将其“加载”到波形整形器节点中,如下所示:
每次需要更改失真参数时,我都会重新创建波形整形器曲线:(
我使用 distCorrect 来制作失真声音更好,通过探索发现的价值观)。
您可以在此处找到我用来创建波形成形器曲线的算法
Feel free to look at an example here.
In detail, I create a waveshaper curve with this function:
Then "load" it in a waveshaper node like this:
Everytime I need to change the distortion parameter, I re-create the waveshaper curve:
(I use distCorrect to make the distortion sound nicer, values found euristically).
You can find the algorithm I use to create the waveshaper curve here