PortAudio is a free, cross-platform, open-source, audio I/O library. It lets you write simple audio programs in 'C' or C++ that will compile and run on many platforms including Windows, Macintosh OS X, and Unix (OSS/ALSA). It is intended to promote the exchange of audio software between developers ...
0
votes
3answers
59 views
Visual studio error compiling Espeak
I'm a Pascal programmer but i need to compile a C library for Windows.
That library is espeak (a voice synthesizer) which uses portaudio lib to access audio port. I have translated the C header into ...
0
votes
2answers
57 views
Windows: get default microphone name
In python2.7 on Windows, I need to get the name of the default microphone, which will be a string such as "Microphone (2- High Definition Audio Device)".
My first attempt was to query WMI using ...
1
vote
1answer
37 views
Building a go project with portaudio-go on OS X (+MacPorts)
I try to get portaudio-go running under Mac OS X 10.8. I installed portaudio via
sudo port install portaudio
so that now portaudio.h is located in /opt/local/include. Since the folder is not a ...
0
votes
0answers
81 views
Bad audio output in stereo mode - FFMPEG PortAudio C++
I'm here again. This time I am working with the audio, I had before some memory leaks issues but now they are solved, this time I am here with a new problem, when I configure portaudio to sound in ...
0
votes
1answer
50 views
build pyaudio with portaudio with ASIO support
I'm running Python 2.7.3 [MSC v.1500 32 bit (Intel)] on win32.
I need to build portaudio with ASIO support and bind it to pyaudio to use it under Windows 7. Basically I want to access ASIO driver ...
0
votes
1answer
108 views
Using any other values in pyaudio for rate / format / chunk give me the error: [Errno Input overflowed] -9981
OS: Mac OSX 10.7.5
Python: Python 2.7.3 (homebrew)
pyaudio: 0.2.7
portaudio: 19.20111121 (homebrew - portaudio)
The following script outputs the following and displays the issues I am having:
...
0
votes
0answers
71 views
Building Portaudio with mingw gives no .dll
beeing new to c/c++ make etc. I ran into some compiling issues that I couldn't solve with google or (my bounded) logic. This whole (./configure, make, make install) gave me a hard time already as a ...
0
votes
0answers
58 views
Special characters in audio devices name : Pyaudio
I'm currently facing a hard problem. I need to use Pyaudio on a french windows environnement and the name of the audio devices contains é or è by default.
This is the error I get when a special ...
0
votes
1answer
150 views
Portaudio won't compile using macports GCC 4.8 (-arch command option unrecognized / bad register name errors)
I use a lot of C++11 features, so I compile my C++ code using macports gcc/g++.
I can't get Portaudio to compile using macports gcc 4.8. Using the stable build (pa_stable_v19_20111121.tgz), running ...
0
votes
1answer
40 views
Controlling audio volume in real time
I'm currently using libsndfile in combination with PortAudio V19 to read audio data from a file and play it back. (Please note I am doing this on a Raspberry Pi running Raspbian.) The problem I'm ...
1
vote
1answer
129 views
Audio signal differences between files and recording from a microphone
I am working on developing a speech emotion recognition system for live recordings. I am using the OpenSMILE library for feature extraction. I have collected a set of audio files containing different ...
3
votes
3answers
232 views
Continuous recording in PortAudio (from mic or output)
I am trying to create a music visualizer application in PortAudio, I did some basic research and found some examples on how to record from a mic to a (temporary) file. But there was no example where ...
1
vote
2answers
121 views
5.1 Channels with PortAudio
I am trying to get started with PortAudio. I am able to build the bundled example file "paex_sine.c" with no problems. This a sine wave on the left channel and a different frequency sine wave on the ...
1
vote
1answer
71 views
Gtk audio player. How to stop sound before the end of the song
I am developing an extremely simple audio player. It uses Gtk and portaudio/libsndfile. I've created a simple test interface with few buttons like Browse, Play etc. My player picks filename correctly, ...
1
vote
1answer
52 views
Error using WASAPI with PortAudio on Win7
I'm trying to use PortAudio and libsndfile to play .wav files in exclusive mode on my Windows 7 machine, but I'm getting
error number -9984 "Incompatible host API specific stream info" .
I've ...
0
votes
1answer
147 views
How to plot a waveform using PortAudio in Java (jpab with Processing)?
I need to access multiple audio inputs in Java so first consulted SO and found this answer and deviced to use PortAudio Java bindings (jpab). Unfortunately I found little and outdated documentation.
...
0
votes
2answers
114 views
Initializing PortAudio: Host error
I am trying to create a PortAudio application on Debian Wheezy 64 bit GNU/Linux. I read the documentation on how to do add the library and it compiles without errors.
Now when I want to initialize ...
0
votes
1answer
111 views
Cannot compile using ALSA
I am trying to create an C application on Debian GNU/Linux which uses the PortAudio interface. To do this I must compile my program with gcc -lrt -lasound -ljack -lpthread -o YOUR_BINARY main.c ...
0
votes
1answer
64 views
Installing PortAudio for use with Cygwin on Windows 7
I'm trying to get PortAudio to work on my computer. I've been using Cygwin and gcc to make applications in C, but I'm completely clueless as to how I might go about getting PortAudio to compile and ...
0
votes
1answer
84 views
Directsound stream synchronisation
I have a question regarding the synchronization of 2 Directsound streams.
To record and play sound I currently use Portaudio to open 2 Directsound streams.
There are 2 callback functions which are ...
0
votes
1answer
171 views
Generate sine wave to play middle C using PortAudio
I am having trouble generating specific frequencies in PortAudio, whenever I try and change the frequency inside of the sin(n * FREQ * 2 * PI / SAMPLE_RATE) the frequency remains the same however the ...
0
votes
3answers
249 views
Pyaudio, portaudio and mac 10.7.5
I'm having trouble installing pyaudio correctly. I have a virtualenv set up for the project. I first tried to install portaudio:
sudo port install portaudio
which returns:
---> Cleaning ...
0
votes
1answer
158 views
How to use portAudio to read audio data output from sound card?
I was wondering if it is possible to read data that is going from the sound card to the speakers with the PortAudio API. After looking through the documentation, I found an example ...
0
votes
0answers
133 views
encoding portaudio float buffer using libspeex
I am trying to encode float buffer got in callback method of portaudio using libspeex codec and saving it into a file called test.spx. the encoding completed without any error but while playing the ...
1
vote
1answer
140 views
Portaudio C++ bindings: symbol not found in MemFunCallbackStream
Recently I discovered there are C++ bindings for PortAudio, so to keep things nice and Object-Oriented I'm converting from the normal PortAudio C-functions to the C++ bindings. However, I ran into ...
0
votes
1answer
91 views
portaudio video/audio sync
I use ffmpeg to decode video/audio stream and use portaudio to play audio. I encounter a sync problem with portaudio. I have a function like below,
double AudioPlayer::getPlaySec() const
{
...
0
votes
0answers
80 views
Why is my streaming portaudio “cut up and staticy!?”
Just compile my two .c files separately on your system ( https://github.com/Xenland/P2P-Crypt )
gcc ./p2pcrypt_tool_udp_receive.c -o p2pcrypt_tool_udp_receive -lportaudio -lpthread `pkg-config ...
0
votes
2answers
2k views
Implementing simple high and low pass filters in C
Trying to use portaudio to record some data, then use an algorithmic filter to change the recorded voice and then play it back. I've verified a lot of it (coming from example) but I'm quite new to C ...
0
votes
1answer
163 views
linking/building portaudio static library
I'm trying to use the static library from portaudio by putting "libportaudio.a" in my project after compiling portaudio (by doing "./configre && make" and then i took the file in lib/.libs/).
...
3
votes
1answer
825 views
Portaudio + Opus encoding / decoding audio input
I'm working on a VOIP client using Portaudio and opus.
I read from the microphone in a frame
-encode each frame with Opus and put it in a list
-pop the first element from the list and decode it
-read ...
1
vote
2answers
628 views
Building Portaudio on OSX 10.7.5 using SDK10.6 or 10.7 fails
I am still having trouble building the Portaudio library on my system, which is OSX 10.7.5 with Xcode 4.3.2, having Command Line Tools installed and having SDK10.6 and SDK10.7 under
...
4
votes
2answers
324 views
Port Audio Won't Install Due to Deprecated Core Audio Functions
I've been trying to install Port Audio onto my Mac for a little bit and I've hit a brick wall. Every time I try to install it using:
./configure --disable-mac-universal && make
It exits ...
0
votes
1answer
196 views
Blocking I/O in portaudio
After messing a bit with portaudio in my spare time I tried to transmit a frequency while the microphone is open, I wrote a callback for doing so - the callback opens only
an output stream and then I ...
0
votes
1answer
99 views
Wait until playback has completed
I'm using PortAudio as a front-end to a speech synthesis (Text to Speech) engine, and I want to provide a synchronous speak function that waits until playback has completed.
It seems like all of the ...
0
votes
0answers
68 views
Activity monitor shows the use of the individual cores or their average use?
I'm working on an application (using portaudio) on a MacBook Pro (Intel Core 2 Duo 2.66 GHz). Everything works fine and the cpu usage is about 80% - 85% on both cores.
The problem comes when I run the ...
1
vote
1answer
84 views
Different audio quality between Mac Pro and MacBook Pro with the same xcode Release
I wrote a program with xcode (using portaudio) on a MacBook Pro (Intel Core 2 Duo 2.66 GHz). The Release works without problem (clear audio streaming) and the CPU Usage Level is almost 90%.
The ...
2
votes
1answer
123 views
_portaudio.so: no matching architecture in universal wrapper
My system is Mac OS 10.8.2, Python 2.7.3, Xcode 4.5.1.
I am trying to import pyaudio in python. import pyaudio gives Please build and install the PortAudio Python bindings first. Considering the ...
0
votes
1answer
104 views
Portaudio: open file instead of using the microphone
I am using PortAudio, and this is how I'm opening a stream for reading right now.
Pa_OpenDefaultStream(&stream, 1, 0, paFloat32, SAMPLE_RATE, SAMPLES, PaCallback, NULL);
As far as I know, this ...
0
votes
1answer
247 views
Multi audio tones to sound card using portaudio
I am trying to generate a tone to the sound card (Frequency: 1950 hz, duration: 40 ms, level: -30 db, right-channel (stereo), on steam 1). Eventually, I would like to play two of these tones (one goes ...
0
votes
0answers
91 views
PortAudio buffer fullness
I'm trying to switch from QAudioOutput to PortAudio. And i'm having difficulty in finding the matching functions. (skip to last paragraph if you want the question only)
I'll explain my QAudioOutput ...
1
vote
0answers
360 views
Python PyAudio installation on windows problems in importing PortAudio V19
I'm trying to install PyAudio for an application to record audio clips from microphone input.
I installed PyAudio from executable file (Windows 7, python 2.6). However when I try to import this ...
4
votes
0answers
864 views
Python PyAudio installation problems (with PortAudio)
I'm trying to write a program to record information from my computers microphone an save it to a file. PyAudio seems like one of the better packages for doing this, and they even have a binary for ...
0
votes
0answers
106 views
Libsox + portaudio
This time im just asking, how can I stream a song, with portaudio and libsox?
I see a documentation of how to do it with libaudiodecoder, but Now i want to know, if it's possible to do it with ...
0
votes
0answers
252 views
How to stream audio with portaudio
im having a new trouble.
Im using Portaudio, I already configured it and started the stream, but I don't know, how to play a sound, I don't know if portaudio can open a file and stream it, How can I ...
0
votes
3answers
982 views
Windows virtual microphone in C
I asked a similar question a while ago but I didn't know very much, so I wasn't able to be specific enough.
I want to write a program that takes input from my microphone, processes it, and then sends ...
0
votes
2answers
236 views
C - DLL needs to be __stdcall and import __cdecl lib
I'm compiling a DLL which needs to use portaudio. It uses all sorts of windows libraries for sockets and such too, but the linker wouldn't recognize the portaudio library. Then I remembered portaudio ...
0
votes
1answer
298 views
[portaudio]Transmit and Detect frequency - Windows
I'm new to portaudio and i looked at "How to extract frequency..." question but still i would like to have some help.
i need to transmit a frequency (using the speakers) and then i would like to check ...
0
votes
0answers
167 views
Parsing speech to text from the sound card
I've been doing some experimentation with PortAudio, and with natural language processing, and I'm wondering if there is some way to combine the two. What I would like is a service that can take the ...
0
votes
1answer
486 views
Portaudio: Importing sound example into my buffer
I am in need of your help once again.
Short version:
Can you import sound clips into Portaudio? If not, where can I get 'realistic' sound examples, that is converted into discrete values which I can ...
0
votes
0answers
288 views
Make portaudio and speex work together
I am trying to build a minimal loop audio
Microphone -> Portaudio -> buffer -> Speex encoder -> Speex decoder -> buffer -> Portaudio -> Headphones
Without Speex I could get ...
