Last active
November 21, 2018 17:55
-
-
Save yoelrc88/8ed28bbd607a579c332dd15b06ee72ae to your computer and use it in GitHub Desktop.
asound file using softvol
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pcm.!default { | |
type asym | |
playback.pcm { | |
type plug | |
slave.pcm "speaker-softvol" | |
} | |
capture.pcm { | |
type plug | |
slave.pcm "mics-softvol" | |
} | |
} | |
pcm.speaker-softvol { | |
type softvol | |
slave { | |
pcm "voice-audio-jack" | |
} | |
control { | |
name "Audio Jack Ouput" | |
card 2 | |
device 1 | |
} | |
} | |
pcm.mics-softvol { | |
type softvol | |
slave { | |
pcm "voice-mics" | |
} | |
control { | |
name "Microphone Array" | |
card 2 | |
device 0 | |
} | |
} | |
pcm.voice-audio-jack { | |
type plug | |
slave { | |
pcm "hw:2,1" | |
} | |
} | |
pcm.pi-audio-jack { | |
type plug | |
slave { | |
pcm "hw:0,0" | |
} | |
} | |
pcm.voice-mics { | |
type plug | |
slave { | |
pcm "hw:2,0" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment