使用 DirectSound 进行音调变换
如何在 C# 中使用 DirectSound 进行变调?我在谷歌中没有找到任何有用的东西。 SetFrequency 对我来说不好,因为这也会改变声音的速度。我不想为每个音高创建一个 wav 文件,因为这会导致软件变得非常大。
谢谢你!
How to do pitchshifting with DirectSound in C#? I didn't find anything useful in Google. SetFrequency isn't good for me, beacuse this changes also the speed of the sound. I don't want to create a wav file for each pitch, beacuse that would result in a very big software.
Thank You!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看这篇维基百科文章,了解有关音频的时间刻度音调修改的概述材料。
请查看类似问题了解更多信息。
这里我找到了短时傅里叶变换的实现 C# 中的变调算法。
Take a look at this wikipedia article for getting an overview about timescale-pitch modifications of audio material.
And look at this similar so question for more info.
And here i found an implementation of the Short-Time Fourier Transform pitch shifter algorithm in C#.