How could you input sound from the microphone on windows in real time?

Something that would let you do something like this:

int main()
{
    sound sample;
    while (1)
        {
            sample=getsound();
            cout<<"Pitch: "<<sample.getpitch()<<" Volume: "<<sample.getvolume()<<"\n";
        }
}

Would it be as simple as that, or am I going to have to learn about how to communicate with drivers and stuff?

Something like this for c++ would be nice. http://people.csail.mit.edu/hubert/pyaudio/

Would it be easier to learn how to do it in python, and then learn how to output data from the python program to a c++ one?

Currently I know nothing about python.

You could get your C++ program to run a Python script which gets the required data and then it puts it in a file, or returns it to you(I'm not sure how) and then do stuff with that data.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.