I'm using PyAudio to record input from the microphone.

Since the audio is recording fine for me, should I try to simply suppress its error messages? Or would there be a way of resolving them?

ALSA lib pcm.c:2212:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.rear
ALSA lib pcm.c:2212:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.center_lfe
ALSA lib pcm.c:2212:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.side
ALSA lib audio/pcm_bluetooth.c:1613:(audioservice_expect) BT_GET_CAPABILITIES failed : Input/output error(5)
ALSA lib audio/pcm_bluetooth.c:1613:(audioservice_expect) BT_GET_CAPABILITIES failed : Input/output error(5)
ALSA lib audio/pcm_bluetooth.c:1613:(audioservice_expect) BT_GET_CAPABILITIES failed : Input/output error(5)
ALSA lib audio/pcm_bluetooth.c:1613:(audioservice_expect) BT_GET_CAPABILITIES failed : Input/output error(5)
ALSA lib pcm_dmix.c:957:(snd_pcm_dmix_open) The dmix plugin supports only playback stream
ALSA lib pcm_dmix.c:1018:(snd_pcm_dmix_open) unable to open slave
Cannot connect to server socket err = No such file or directory
Cannot connect to server socket
jack server is not running or cannot be started
link|improve this question

71% accept rate
feedback

1 Answer

Those look like normal debug messages as it figures out how to run on your system. I don't see any reason you shouldn't suppress them.

You can probably turn off detection of jack servers, bluetooth devices, surround sound etc. somehow, but it's not necessary and you might screw things up. Don't mess with things that are working!

link|improve this answer
Thanks for the advice! My problem is, the script displays the text needed to record. As soon as you hit record, that text basically gets bumped out of the way by these debug messages. – eoinoc Aug 18 '11 at 5:15
If your question is how to suppress them, try redirecting the stderr to a file. stderr = open(logfile, 'wb') then sys.stderr = stderr. Let me know if it works. – agf Aug 18 '11 at 9:28
That seems to make sense, but has no effect. Is it possible the messages are coming through another output stream, for example? – eoinoc Aug 19 '11 at 6:22
feedback

Your Answer

 
or
required, but never shown

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