mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-25 02:51:30 +00:00
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@17138 d0543943-73ff-0310-b7d9-9358b9ac24b2
14 lines
321 B
Bash
Executable File
14 lines
321 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# ALSA can manage a max of 8 cards
|
|
CARD_LIST="0 1 2 3 4 5 6 7"
|
|
|
|
for i in $CARD_LIST; do
|
|
|
|
#amixer -c ${i} -q set Mic 0% mute
|
|
amixer -c ${i} -q set Speaker 70% unmute >/dev/null 2>&1
|
|
amixer -c ${i} -q set Mic cap mute 70% >/dev/null 2>&1
|
|
amixer -c ${i} -q set "Auto Gain Control" off >/dev/null 2>&1
|
|
|
|
done
|