Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
2answers
612 views

PyAudio IOError: No Default Input Device Available

I'm using PyAudio under the Enthought Python Distribution (Python 2.6.6) in Ubuntu 10.10 x64. >>> import pyaudio >>> pa = pyaudio.PyAudio() >>> ...
5
votes
1answer
211 views

PyAudio Over Network crashes

Hello I am facing an issue with PyAudio I can not solve. When I use it over the network (after a while) it crashes. The error I get is Exception in thread Thread-1: Traceback (most recent call ...
4
votes
1answer
244 views

Starting a subprocess via python multiprocessing hangs

I'm using pyAudio to listen to the audio device and do some "stuff" in the background while the main program continues to run. I started out with a second script, but would like to consolidate into a ...
4
votes
1answer
1k views

Detect tap with pyaudio from live mic

How would I use pyaudio to detect a sudden tapping noise from a live microphone?
3
votes
1answer
186 views

Audio Recording in Python

I want to record short audio clips from a USB microphone in Python. I have tried pyaudio, which seemed to fail communicating with ALSA, and alsaaudio, the code example of which produces an unreadable ...
3
votes
2answers
1k views

Building PortAudio and PyAudio on Mac running Snow Leopard (arch issues)

I'd like to tell you what I've tried and then I'd really welcome any comments you can provide on how I can get PortAudio and PyAudio setup correctly! I've tried installing the stable and svn ...
2
votes
0answers
668 views

PyAudio ALSA Default

Currently working with the Sample PyAudio code: import pyaudio import wave import sys chunk = 1024 FORMAT = pyaudio.paInt16 CHANNELS = 1 RATE = 44100 RECORD_SECONDS = 5 WAVE_OUTPUT_FILENAME = ...
2
votes
2answers
561 views

Pyaudio installation error - 'command 'gcc' failed with exit status 1'

I'm running Ubuntu 11.04, Python 2.7.1 and wanted to install Pyaudio. So I ran, $ sudo easy_install pyaudio in the terminal and the process exited with following error messages, Searching for ...
1
vote
2answers
174 views

how to convert wave file to float amplitude

so I asked everything in the title: I have a wave file (written by PyAudio from an input audio) and I want to convert it in float data corresponding of the sound level (amplitude) to do some fourier ...
1
vote
2answers
71 views

“Message Must be multiple of 16” Encrypted Audio over the Network with Python

I am sending encrypted audio through the network in Python. This app works momentarily then breaks saying it must be a multiple of 16. Not sure what I am doing wrong. Or where to look in the code to ...
1
vote
0answers
117 views

OSS Detected in PyAudio, listed as Default, but not used

Posted a question like this a few days ago to no avail, this one will be a bit more indepth as I think it's a different but related issue. So i'm working with PyAudio for a project, and I use OSS on ...
1
vote
1answer
302 views

PyAudio working, but spits out error messages each time

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 ...
1
vote
1answer
249 views

PyAudio, how to tell frequency and amplitude while recording?

I've used the PyAudio default recording example, and added numpy and scipy. I can only use scipy.io.wavefile.read('FILE.wav'), after recording the file, however, and it also gives me this random ...
1
vote
1answer
184 views

PyAudio Memory Error

I am having an issue with my code which causes a memory error. I believe it is caused by this function (see below). def sendAudio(): p = pyaudio.PyAudio() stream = p.open(format = FORMAT, ...
1
vote
0answers
165 views

Python Voice Communication

Hello I am trying to figure out some code which is suppose to send voice over the network. I am having problems with the audio it sends but its just a series of loud beeps and not the audio I input ...
1
vote
1answer
99 views

PyAudio raise exception on buffer under/overflow

PyAudio is based on PortAudio. Is there anyway to detect a buffer under/overflow for writing/reading from an audio stream in PyAudio?
1
vote
0answers
359 views

PyAudio trying to use JACK

I'm running PyAudio under Python 2.6.6 and would like it to use ALSA and not JACK. In [1]: import pyaudio In [2]: pa = pyaudio.pa In [3]: pa.initialize() Cannot connect to server socket err = No ...
1
vote
1answer
287 views

Unable to install and build PyAudio

I've build and installed PortAudio using this tarball: 'pa_stable_v19_20071207.tar.gz' After this step, when I'm trying to install PyAudio via the tarball from this URL: ...
0
votes
3answers
48 views

How do I actually play a song on PyAudio?

I looked at this question: pyaudio help play a file While this question did get answered I never got a clear answer of where to actually put the song file. This is the code for playing a WAVE ...
0
votes
1answer
70 views

Geting IOError: [Errno Input overflowed] -9981 when setting PyAudio Stream input and output to True

Apologies for the newbie question, but I'm trying to run the following code (an example from the PyAudio documentation) on my Mac (OS 10.7.2): import pyaudio import sys chunk = 1024 FORMAT = ...
0
votes
0answers
36 views

PyAudio plays garbage when given audio file

I am trying to play a wave file using PyAudio package. However it just plays noise, even though the file has clean speech. Could anyone suggest how I can solve this problem. It is the same problem ...
0
votes
0answers
94 views

Python Audio over Network Problems

Hello I am having problems with audio being sent over the network. On my local system with no distance there is no problems but whenever I test on a remote system there is audio but its not the voice ...
0
votes
2answers
252 views

pyaudio help play a file

I did not understand the example material for pyaudio. It seems they had written an entire small program and it threw me off. How do I just play a single audio file? Format is not an issue, I just ...
0
votes
0answers
85 views

Using pyaudio without jack server

is there a way I can use pyaudio on a linux box without having a jack server running in the background? Thanks for any help!
0
votes
1answer
444 views

Read left and right soundcard channels separately in Python

I wish to develop an application in python which is able to read in data from a soundcard (think engineering waveform analysis). I need to be able to read in the left channel and right channel in ...
0
votes
1answer
111 views

How do I get a list of my device's audio sample rates using PyAudio or PortAudio?

I'd like to query my audio device and get all its available sample rates. I'm using PyAudio 0.2, which runs on top of PortAudio v19, on an Ubuntu machine with Python 2.6.
0
votes
1answer
213 views

How do I do mathematical analysis on microphone audio information from pyaudio?

I am trying to obtain the pitch, the level, and other stuff from my microphone using Python. I am trying using pyaudio, but I read that I need to use other libraries to generate the maths. I can’t ...
0
votes
2answers
81 views

Where I can find getLevel()?

In the code below is using 'getLevel()'. where I can find it (it is about sound, and it run with pyaudio library) # this is the threshold that determines whether or not sound is detected THRESHOLD = ...
0
votes
1answer
464 views

Python/Tkinter Audio Player

Hey everyone reading this, I've recently got into doing GUI development with Python. Tkinter seems like the easiest and most logical choice starting out. I did a little with wxPython but it was more ...