I've got an embedded device with ALSA support, and I'm trying to figure out how to get dsnoop working. The reason is that I want two applications to share the microphone input. But the problem is that ALSA seems to ignore /etc/asound.conf
entirely. E.g. arecord --list-pcms
does not list the pcm's defined there. How can I check the results of /etc/asound.conf
parsing?
There is a mysterious line in /usr/share/alsa/alsa.conf
, "errors false". Does this do anything?
/usr/share/alsa/pcm/
, including adsnoop.conf
file. – Jul 01 '13 at 12:49dsnoop.conf
file, which has apcm.!dsnoop
entry. It's parameterized, taking 5 args (card dev subdev format rate) – MSalters Jul 01 '13 at 13:23~/.asoundrc
with your custom definitions? Or even copying/etc/asound.conf
or/usr/share/alsa/alsa.conf
to~/.asoundrc
? It is always advisable to do this rather than messing around with/etc/asound.conf
or/usr/share/alsa/alsa.conf
. – skrowten_hermit Apr 08 '17 at 19:33