使用 p/invoke 和 win-api 监控音频线路输入 (C#)
在过去的几天里,我试图编写一个小程序来使用 win-api (winmm.dll) 来监视音频线路输入。 我可以 pinvoke api 函数,例如 waveInOpen,但我不知道如何使用这些函数来实现我的目标。
问题是 - 有人可以简单地告诉我如何使用这些 API (C#) 从音频线获取数据。
In the last few days I was trying to write small program to monitor the audio line-in using win-api (winmm.dll).
I can pinvoke api functions such as waveInOpen but I can't figure out how to use these functions to achieve my target.
the question is - can someone can briefly tell me how can I get the data from the audio line in using these API (C#).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
好吧,我终于在这里找到了我要找的东西。
http://www.codeguru.com/forum/archive/index .php/t-264694.html
虽然这是一个 C 代码示例,但它描述了使用 Windows 音频 api 从声卡线路输入/麦克风设备读取数据的简单轮廓。
我现在正在努力将这个 C 代码重新编码为 C#。如果成功,我会将其发布在这里。
Well I finally found what I was looking for here.
http://www.codeguru.com/forum/archive/index.php/t-264694.html
Although this is a C code example, it is depicting the simple outline of using the windows audio api to read data from the sound-card line-in/microphone device.
I am now working on recodeing this C code to C#. if successful I will post it here.
你不必!
看这个:
通过录制播放的声音来测量扬声器音量带麦克风
与那家伙联手:)
You don't have to!!!
Look this:
Measure speaker volume by recording playing sound with microphone
Join forces with the guy :)