从麦克风/耳机捕获声音并以特定频率触发动作
我正在使用.NET 3.5。
我需要从麦克风/耳机捕获声音并以特定(不精确)频率触发动作(当玩家在打高尔夫球时用棍子击球时需要执行一些动作)。
所以,
1. 如何使用.NET 3.5从麦克风/耳机捕获声音?
2. 以特定(不精确)频率触发操作?
有什么想法吗?
I am using .NET 3.5.
I need to Capture Sound from Mic/Headphone and trigger action at particular (not exact) frequency (Need to perform some action when player hits ball with stick while playing golf).
So,
1. How to capture sound from Mic/Headphone using .NET 3.5?
2. Trigger action at particular (not exact) frequency?
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于(2),我建议使用 Goertzel 算法,它非常容易实现,并且可以让您检测窄频率范围内的能量。
For (2) I suggest the Goertzel algorithm, which is very simple to implement and will allow you to detect energy in a narrow range of frequencies.