当我使用shell脚本更改alsa时,如何区分使用hw:1,0
而不是hw:0,0
?
例如:
amixer sset Capture 10%+ unmute
$ amixer -D AK5370 sset Capture 10%+ unmute
ALSA lib control.c:882:(snd_ctl_open_noupdate) Invalid CTL AK5370
amixer: Mixer attach AK5370 error: No such file or directory
$ amixer -D 1 sset Capture 10%+ unmute
ALSA lib control.c:882:(snd_ctl_open_noupdate) Invalid CTL 1
amixer: Mixer attach 1 error: No such file or directory
最佳答案
真的不行,您怎么得到该特定命令,了解alsa设备命名,并且无法键入man amixer
并发现-D
可以执行此操作?
关于linux - 如何使用Shell更改Alsa特定设备的音频音量?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8376159/