Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
2answers
556 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() >>> ...
9
votes
1answer
275 views

Portaudio won't play sound if another program is currently playing

I have a program using PortAudio. Currently I'm starting it up with Pa_OpenDefaultStream(&stream, 0, 2, paFloat32, 44100, 256, audioCB, udata), but when I compile and run my program it won't play ...
6
votes
1answer
621 views

RtAudio or PortAudio, which one to use?

I'm considering RTAudio + RTMidi and PortAudio + PortMidi for a new project that requires realtime audio and midi procesing. Can anyone with experience using both libraries recommend one over the ...
3
votes
1answer
1k views

How to extract frequency information from samples from PortAudio using FFTW in C

I want to make a program that would record audio data using PortAudio (I have this part done) and then display the frequency information of that recorded audio (for now, I'd like to display the ...
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
1answer
82 views

How to send a pointer on a callback function which is encapsulated in a class

I'm actually coding a program in C++ using the library PortAudio. This library is using a callback function tu manage audio input and output. In C++, I implemented this callback function in my class ...
2
votes
1answer
290 views

PortAudio: How to get record from mic (get data)

I am trying to use portaudio (being cross platform capability), to read in from microphone, then i want to put that data through a FFT, but i am not so sure how to do it. Alot of people have told me: ...
2
votes
1answer
156 views

Why does PyGILState_Release(…) segfault in this case?

I am working on implementing asynchronous audio playback for PyAudio. The backend Portaudio implements asynchronous playback by creating its own thread and calling a C-callback function whenever it ...
2
votes
2answers
642 views

speex decoding going wrong

I'm using speex to encode some audio data and send it over UDP, and decode it on the other side. I ran a few tests with speex, and noticed that if I decode a packet straight after I encoded it, the ...
2
votes
2answers
2k views

How to extract frequency information from an input audio stream (using PortAudio)?

I want to record sound (voice) using PortAudio (PyAudio) and output the corresponding sound wave on the screen. Hopeless as I am, I am unable to extract the frequency information from the audio stream ...
1
vote
0answers
86 views

I can't manage to compile Qt + PortAudio sur Qt

I am trying to compile Qt + PortAudio on Visual Studio 2010. I made a new Makefile project in visual (Visual C++/General/Makefile project). I am getting this error: Error 8 error MSB3073: The ...
1
vote
2answers
144 views

Error calling method on NPObject! in Javascript

Salve, ho il seguente problema: ho del codice scritto in Visual C++ 2010(progetto FireBreath) che vuole aprire uno stream utilizzando PortAudio. Hello, I have the following problem: I've got some ...
1
vote
3answers
414 views

How to run a C++, PortAudio application on startup on Angstrom Linux on a BeagleBoard?

I have a command-line application called xooky_nabox that was programmed using c++. It reads a puredata patch, processes signals from the audio in jack of a beagleboard and outputs signals through the ...
1
vote
1answer
97 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
351 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
265 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: ...
1
vote
1answer
151 views

Cmake file for PortAudio

I was wondering, do you guys know of a cmake file for portaudio that I could use? Thanks in advance!
1
vote
1answer
375 views

Why does PortAudio not play nicely with other audio programs or how can I get it to?

I am trying to write an audio application using PortAudio, but if any other audio programs (usually Firefox) are running at the time which I try to run my program, I get the following error: ...
1
vote
3answers
913 views

Iterate over list in haskell?

I'm writing an audio program in Haskell using Portaudio. I have a function that generates a list of samples I'd like to play, and I'm trying to play them using the following snippet inside main: ...
1
vote
2answers
471 views

How to use numpy with portaudio to extract bass, mid treble

As in this example http://stackoverflow.com/questions/259451/how-to-extract-frequency-information-from-an-input-audio-stream-using-portaudio I'm curious about portaudio and numpy... I'm not 100% ...
0
votes
0answers
11 views

Build DLL dependent on DLL?

I've written a DLL in PellesC, but when I try to build it I get several "unresolved external" errors. I'm using portaudio, so I have the location of portaudio_x86.lib in the library folders and the ...
0
votes
1answer
45 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
1answer
68 views

Which real-time C++ audio libraries work with Xcode 4?

I am wanting to begin a project in C++ which would allow me to create sounds with functions such as float y = sin(2 * PI * f * t);, FM synthesis, and other more complex algorithms`. I am using Xcode 4 ...
0
votes
0answers
44 views

How to extract data from this PortAudio sound block?

I'm new to C. I'm using PortAudio to read from the microphone. char *sampleBlock; Pa_WriteStream( stream, sampleBlock, FRAMES_PER_BUFFER ) But what kind of data is in sampleBlock? I suppose it's ...
0
votes
0answers
31 views

Creating multiplatform project with portaudio

I'm beginner in C coding and I am working on a project using PortAudio library. Since my project will be open-source and multiplatform, I understand I need to include the PortAudio library to the ...
0
votes
0answers
83 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
190 views

SDL Audio vs PortAudio

I am searching for an opensource, cross-platform and free (for commercial usage) audio input/output library. Search finally boiled down to SDL(1.3) and PortAudio. SDL supports large number of ...
0
votes
1answer
128 views

Opening raw data stream (such as tcpdump) in portaudio

I would like to open a raw data stream from program such as tcpdump in portaudio, what would be your advice? Didn't found much in documentation about receiving passed data. Thank you!
0
votes
1answer
94 views

How to enable pulse device to allow recording using portaudio

All, I'm currently working on a code to record voice bqsed on portaudio framework. For the moment, I can't make it works and I have the error code below. 0: /dev/dsp An error occured while using the ...
0
votes
0answers
62 views

Why portaudio reports less output devices when I integrate pa_devs.c code into my project

Pa_GetDeviceCount() returns 10 when I compile portaudio test: pa_devs.c, but if I integrate code from this sample file into my project, I get only 5 and it tells me that the default output device is ...
0
votes
1answer
100 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
205 views

How to open a stream from UPD paquets?

I would like to use PortAudio library to play audio data. This audio data comes from UDP paquets. I saw there is Pa_OpenDefaultStream() (and Pa_OpenStream() which is pretty similar) function to open ...
0
votes
3answers
707 views

Combine Video and Audio Streams (Qt, OpenCV, PortAudio,libsnd?)

I was wondering, how would I combine recorded audio and video into one if I have them in separate files? Preferably using OpenCV and PortAudio/libsnd. Thanks in advance.