ALSA stands for Advanced Linux Sound Architecture and is a kernel component that supports sound in Linux systems.
0
votes
0answers
15 views
What does `snd_mixer_selem_register()` do?
What is the purpose of snd_mixer_selem_register()? Most examples I find pass it
NULL for options and classp. For example Set alsa master volume from c code does this. I am also pretty sure that ...
2
votes
0answers
33 views
How to mix sound from two devices using tinyAlsa on Android
I'm working on custom board running Android 4.2.1. I have almost all things working except of proper audio routing.
I have an audio codec there (WM8960 connected in I2S bus) and it works well ...
0
votes
0answers
19 views
Asound fails to play a sound
I’m trying to use asound to play some sound in C++, but I’m stick with this error:
Rate doesn't match (requested 44100Hz, get 0Hz)
I tested my program on an Ubuntu and it works, but definitely fails ...
-2
votes
0answers
29 views
Alsa sound over hdmi - plug versus route [closed]
Folks,
On my clean Ubuntu 13.04 server, the HDMI output from nVidia card is connected to an AV receiver. However, I wasn't getting any sound when using speaker-test. Browsing the net, and after some ...
0
votes
1answer
32 views
Alsa library read normalize value
I am reading sound value with alsa library. But this values not normalized. Can we read normalize value with this library? I am reading like this with 116bit little endian ...
6
votes
2answers
190 views
Python read output sound not input
Any clue on what the easiest way to read the system sound level is?
I'm planning on creating an equalizer made out of short led strips and hooking them up to an Arduino or RaspberryPi. I've seen a ...
0
votes
1answer
30 views
what is alsa library read value meaning?
I am reading sound values with alsa library and return some value like this 40239717. But I did not understand means. How to convert this value normal form.
My read code is like this:
if ((err = ...
0
votes
1answer
92 views
Raspberry Pi - Audio Fails After Adding RTC
I have a Raspberry Pi that I'm trying to hook-up to walkie-talkies to announce the current time every half hour plus different status updates automatically.
I had a CRON job running mpg123 that was ...
0
votes
1answer
18 views
SoundCLI gem fails
I am trying to run the soundCLI gem, but it fails with:
/usr/lib/ruby/gems/1.9.1/gems/soundcli-0.0.5/lib/soundcli/player.rb: line 158
(null)-WARNING **:Command line `dbus-launch ...
0
votes
1answer
39 views
pulseaudio not recognizing USB Soundcards [closed]
I did a fresh install of Ubuntu 12.04.2.
aplay -l recognizes both my NVidia devices as soundcards (good) and my usb soundcard (good).
However, pulseaudio cannot load the usb card:
pacmd ...
0
votes
1answer
102 views
Using ALSA, how to record with a microphone what it is just playing out through a speaker?
I am trying to record what it is just playing out to the speaker using following ALSA APIs:
snd_pcm_mmap_writei()
snd_pcm_mmap_readi()
Both functions are called one to next in the same thread. The ...
0
votes
2answers
41 views
Audio Sampling on Debian
We're running Debian with ALSA, and we need to extract audio samples from our audio input line. We want to be able to fill a buffer with these samples, so perform operations on them as they come.
We ...
0
votes
1answer
47 views
helping getting started with audio programming languages [closed]
I have a small application I have been working on for some time to help my son with his speech delay. I am using gstreamer to play phonemes, small audio clips about 100ms long.
Things are fine but I ...
0
votes
1answer
24 views
TravisCI no audio device
I'm trying to use TravisCI to test a SDL application, which has audio functionality (but the test does not require it).
When I started the app in the Travis's VM, it exited with:
ALSA lib ...
1
vote
1answer
50 views
ALSA “default” vs “hw:0,0”
What is the difference between the devices "default" vs "hw:0,0" ? Are they the same ?
(Background: I faced some trouble to play audio when I configured hw:0,0 , but "default" worked. Could not find ...
0
votes
1answer
157 views
Add ALSA to Android
I would like to understand how an application like AlsaMixer or MixGet, mixer widget with alsa is working.
Specially, I would like to develop an application which makes use of the "/etc/asound.conf" ...
0
votes
1answer
74 views
ALSA: Relation between period size of speaker and mic
I have audio conferencing device which has a mic and speaker. Both mic and speaker having same sampling rate set by snd_pcm_hw_params_set_rate_near() say 8000 Hz. Do I need to set period size and ...
1
vote
0answers
52 views
ALSA snd_pcm_drop() is not clearing complete buffer
I am using ALSA API snd_pcm_drop() to clear the buffers. But when I continue audio later with snd_pcm_prepare(), I can hear part of previous audio which was supposed to be cleared.
This happens when I ...
0
votes
1answer
34 views
ALSA snd_pcm_sw_params_set_stop_threshold() to a lower value cause underrun
For mic, I understand stop threshold as: if the filled samples in soundcard hardware ring buffer crosses this threshold, the hardware stops reading from Analog to Digital converter of mic. Thus ring ...
0
votes
0answers
32 views
How to detach the ALSA driver?
I am working on an application which needs to use more than 32 USB sound cards. It is written in python and I'm testing it on Ubuntu 12.04. Some useful modules I'm using are pyusb and pyalsaaudio.
My ...
1
vote
2answers
97 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
0answers
324 views
Python Raspberry PI PyGame Audio error - just a click
Brand new to Python and also to using Raspberry Pi
Trying a very simple hookup to Arduino and using pyGame to play sounds when buttons are pressed.
Unfortunately i cant get the .wav files to ...
0
votes
0answers
140 views
PCM audio playback using alsa in RHEL6
I am trying to play a wave file in RHEL6 using alsa library calls in my C Code in Qt. I am reading the wave file ("t15.wav") in a buffer(wave_buffer). The wave header has been stripped off since the ...
-2
votes
1answer
50 views
How to change audio volume of a particular application in Linux [closed]
I wanted to adjust volume of a particular application(Not the entire system volume) in Linux using my c code.
Please suggest how can we do this in Linux.
1
vote
1answer
35 views
strace print asound ioctl
my strace tends to confuse some ioctl values (I'm sure that the SNDRV ioctls is not recognized well...)
how I can recognize the right ioctl value?
a little example:
$ strace aplay -l
...
...
0
votes
2answers
93 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
77 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
69 views
VAD to switch from listen mode to speak mode
I am attempting to turn my four-wire apartment buzzer into a VOIP phone using a raspberry pi and a custom circuit. The problem is that two way communication is not supported. I can either be listening ...
1
vote
1answer
270 views
Inject uplink audio in call with Snapdragon MSM8960 SoC
I've been investigating on this topic specific to MSM8960 for some time. I looked into the ALSA hardware module from google. Michael's answer in the post did mention that MSM8960 supported the in-call ...
0
votes
1answer
116 views
Strange C behaviour when using alsalib
I obtained a strange behaviour of my C code while I tried to use the ALSA library.
I used this code to generate a sid of a device
snd_mixer_selem_id_t*
getSid(){
snd_mixer_selem_id_t *sid;
...
0
votes
1answer
62 views
alsa - managing non-blocking stream
Working with a usb audio device (its a HID with multiple channels) that constantly outputs data.
What I'm hoping to achieve is to ignore the audio until a signal comes in from the device. At that ...
-1
votes
1answer
134 views
ALSA aplay sampling rate [closed]
I am using aplay from alsa-utils for playing different wav files over my Linux PC. aplay correctly plays the audio file when i play it as
aplay abc.wav
The sampling rate is found to be 22050Hz. Now ...
1
vote
1answer
57 views
Alsa is playing back vorbis at 2 times the frequency
I am currently trying to learn how to use Alsa to play back an audio file. I seem to have it most of the way, the file loads and plays, but I have to decrease the frequency by half to get it to play ...
0
votes
0answers
65 views
Corruption in file recorded with tinycap utility
I am using a customized board with ICS ported on it.
I am using a tinycap utility to capture data. But I found corruption in my audio stream. After debugging I come to know that fwrite() used in ...
1
vote
1answer
77 views
ALSA - managing async IO
I have a device that is continuously putting out PCM data. Under certain circumstances I want to record this output. To this end I have a process that waits for the signal to record and when it gets ...
0
votes
0answers
52 views
julius asoundlib.h missing
Just started using julius speech recognition on CentOS 6.3 and needed to recompile (after it was working somewhat) to add support for my audio (alsa)
I ran...
./configure --with-mictype=alsa ...
0
votes
1answer
217 views
Connecting microphone input to speaker output in Linux [closed]
I have an embedded system ( carambola from 8devices with openWRT firmware ) and using a usbaudio with it . I would like to stream the microphone input to speaker output . Which means whatever you ...
1
vote
1answer
68 views
python's alsaaudio.mixer not refreshing mixer settings
i would like to control the mixer of my ALSA soundcard from python. at the same time, i would like to be able to get changes from other applications that might modify the soundcard in parallel.
i ...
0
votes
1answer
148 views
ALSA - Change mic gain in c code using alsa api (linux)
I'm trying to mute the mic from inside my application using the alsa api on a linux box.
I'm using the following code for changing the volume with volume=0:
long min, max;
snd_mixer_t *handle;
...
4
votes
2answers
150 views
Recording from ALSA - understanding memory mapping
Im attempting to use ALSA to take the input from a USB audio device and write it out to disk as a series of signed short values. What I'm ending up with are blocks of what appear to be valid data ...
0
votes
2answers
135 views
ALSA - unmuting devices?
I have been trying to capture audio, within a native linux program running on an Android device via adb shell.
Since I seemed to be getting only (very quiet) noise, i.e. no actual signal ...
0
votes
1answer
83 views
Prevent to crash if assertion failed (alsa is not configured correctly)
if alsa mixer is not configured correctly by user crash with
alsa_get_unmute_volume: Assertion `elem' failed
static const char alsa_core_devnames[] = "default";
static char *card, *channel;
static ...
0
votes
0answers
67 views
Mutliple sound streams with configurable volume level using ALSA lib
I would like to use ALSA library to play mutliple sound streams, with each stream having its own customizable volume level. Would like to avoid using higher level abstractions like pulseaudio, since ...
0
votes
0answers
66 views
ALSA : snd_pcm_readn need constant read delay
How to achieve constant read delay from snd_pcm_readn() ? I tried (144 frames read, for 4 channel mic, 8000Hz).
What I expect is 18 millisecond read delay for each call to snd_pcm_readn() :
18ms, ...
0
votes
1answer
338 views
ALSA & Python - Capturing multiple mono audio inputs
I'm using the python audio alsa library to interact with my M-Audio Delta 1010LT PCI audio interface. This audio interface has 8 analog inputs. I'd like to analyze the signal of one specific mono ...
0
votes
1answer
191 views
Playing multiple wav files using ALSA in C with different volumes
I need to play more than 2 wav files using ALSA library C interface. Each file should be played with different volumes but it should be possible to play them simultaneously. I am using embedded linux ...
1
vote
1answer
221 views
ALSA - multithreading, and “exclusive access” to audio HW
I have questions about the ALSA sound library.
Let me first state that a usual reply to questions like mine is "use JACK",
and that that anwer is not helpful, since I probably cannot use JACK.
I am ...
0
votes
1answer
92 views
Set record device alsa
I want to port same function from oss mixer to alsa but I don't now how to check if device
channel have capture mask.
Code for OSS:
These functions handle the mixer device
static int mixer_fd = -1, ...
0
votes
0answers
75 views
How to loop ALSA input to an output
In the simplest case something like this would achieve what I am looking for:
arecord -D dev1 | aplay -D dev2
Is there a better way, using an ALSA plugin configuration or the like? I am not using ...
1
vote
2answers
817 views
ALSA: Ways to prevent underrun for speaker
I am playing a single channel audio in non-interleaved mode. I am getting underrun when I am writing aduio data into speaker : ALSA lib pcm.c:7339:(snd_pcm_recover) underrun occurred
Here is how I ...
