在 WPF C# 中从麦克风录制音频
我正在开发一个 WPF 应用程序,其中包含要嵌入到文档中的录制音频数据。
我的问题是如何录制音频并在显示屏上显示音量波!
编辑
我不需要第三方库,应该有一些使用 direct-x 或 Windows API 的解决方案,不是吗?
I am working on a WPF application that includes record audio data, to be embedded in documents.
my question is how I can record audio and show volume waves on display!
EDIT
I don't want Third Party libraries, there should be some solutions using direct-x or Windows API, Isn't there ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,没有 Windows API 函数来解释波形数据以便您可以显示它。
有内置的录制方法,例如任何简单的搜索都会有所帮助:如何使用 C#/WPF 录制音频?
波形文件可能采用易于解释的格式,即它们通常是未压缩的、16 位数据、每个样本 2 个字节、每个通道 1 个样本(L,R),一些标头信息和每秒 44100 个样本。除非您使用库,否则您必须进行自己的(简单的)数据处理以将其转换为波形显示。
No, there is no Windows API function to interpret waveform data so you can display it.
There are built-in methods for recording, for example any simple search will help: How do I record audio with C#/WPF?
A wave file may be in an easily-interpreted format, i.e. they are usually uncompressed, 16-bit data, 2 bytes per sample, 1 sample for each channel (L,R), some header information and 44100 samples per second. Unless you use a library, you'll have to do your own (simple) data processing to convert that to a waveform display.