使用C在Windows捕获麦克风音频流

使用C在Windows捕获麦克风音频流

本文介绍了使用C在Windows捕获麦克风音频流的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我期待建立一个莫尔斯德codeR(并最终codeR)的C.我想使用的音频端口输入,并品尝端口上的输入电压。

I'm looking to build a Morse decoder (and eventually a coder) in C. I'd like to use the audio port as input, and sample the incoming voltage on the port.

我如何去使用C Windows中的麦克风音频端口读取电压?

How do I go about reading the voltage on a microphone audio port in Windows using C?

推荐答案

该simplist的方法是使用功能。

The simplist way is to use the waveIn functions provided by the Win32 API.

您可以阅读。

You can read Recording and Playing Sound with the Waveform Audio Interface for an overview, or just dive into the API documentation.

这篇关于使用C在Windows捕获麦克风音频流的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-24 16:54