vote up 4 vote down star
2

Can I access a users microphone in Python?

Sorry I forgot not everyone is a mind reader: Windows at minimum XP but Vista support would be VERY good.

flag

What OS is this for? Does it have to be cross-platform? – Cody Brocious Oct 11 '08 at 7:09

3 Answers

vote up 3 vote down check

Best way to go about it would be to use the ctypes library and use WinMM from that. mixerOpen will open a microphone device and you can read the data easily from there. Should be very straightforward.

link|flag
1  
Do you think you can provide some sample code for this? I can call mixerGetNumDevs but i'm not sure how to get from there to mixerOpen or for reading levels. TIA – Jared Apr 10 at 4:51
vote up 1 vote down

You might try SWMixer.

link|flag
vote up 4 vote down

I got the job done with pyaudio

It comes with a binary installer for windows and there's even an example on how to record through the microphone and save to a wave file. Nice! I used it on Windows XP, not sure how it will do on Vista though, sorry.

link|flag
"Note that PyAudio currently only supports blocking-mode audio I/O. PyAudio is still super-duper alpha quality." from website – Dustin Getz Jul 23 at 18:20

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.