0
votes
0answers
30 views
Alsa Headers not found in Ubuntu 9.04. [closed]
Hi,
I want to run my programs which I was running in Fedora core 6 which uses alsa apis, In FC6 I had alsa headers in /usr/include/alsa folder. In Ubuntu 9.04, I search whole file …
0
votes
1answer
37 views
Warning/error from ALSA’s pcm_min.c example. Possible problem?
Dear developers,
When I compile ALSA's pcm_min.c example with
gcc -Wall -lasound pcm_min.c -o pcm_min
Everything is fine, but running it, I get the white noise as expected, but …
0
votes
2answers
54 views
Where can I get these header files?
I'm attempting to compile SndObj, and I need some header files. Which Debian packages do I need to obtain all the missing header files?
Checking for C header file alsa/asoundlib.h …
0
votes
1answer
28 views
ALSA dmix plugin and sample rate problems.
I'm using the ALSA dmix plugin on an embedded project, and mixing mp3 files by playing them with mpg321-alsa. In my asound.conf I've set my dmix sample rate to 44100Hz.
If I try t …
0
votes
1answer
59 views
Multiple ALSA sound stream in Embedded Linux ?
Hi Friends,
Currently In my embedded linux I can not open multiple ALSA sound stream. What I need is to have different sound playing at a time. Like one application is playing vid …
0
votes
0answers
56 views
If we could rewrite ALSA from scratch, what would it look like?
Many people agree that ALSA is probably the biggest weakness of the GNU/Linux operating system. ALSA is massive, poorly understood, and badly documented. Some design decisions that …
1
vote
1answer
81 views
Using ALSA’s function snd_pcm_writei can I free the sample buffer right away?
Using ALSA to play audio, after calling snd__pcm__writei, can I free the sound sample buffer right away or do I need to wait until the sound is finished playing before I can free t …
2
votes
5answers
447 views
Real Time Audio Analysis In Linux
I'm wondering what is the recommended audio library to use?
I'm attempting to make a small program that will aid in tuning instruments. (Piano, Guitar, etc.). I've read about ALS …
1
vote
0answers
19 views
ALSA not working when linked through a library
Hi,
I'm experiencing a very strange behavior.
I'm using alsa 1.0.18 on a powerpc platform.
If I run the following simple code from the main of a .c file, it works perfectly, but …
3
votes
4answers
264 views
How to synthesize sounds?
I'd like to produce sounds that would resemble audio from real instruments. The problem is that I have very little clue how to get that.
What I know this far from real instruments …
2
votes
3answers
213 views
Finding processes using ALSA sound fast
Currently the way /usr/sbin/alsa in Debian knows the processes using the sound card looks like:
echo $( \
lsof +D /dev -F rt \
| awk '/^p/ {pid=$1} /^t/ {type=$1} /^r0x(74|e)..$ …
1
vote
1answer
312 views
How do you do ALSA in Mono?
Does anyone know how to access ALSA (low-level audio API) in Linux using Mono?
NOTE: I'm hoping to access ALSA using PInvoke.
