peter 发表于 2017-2-13 09:30:09

树莓派3-- 设置默认声音耳机输出 ---linux系统教程

树莓派3 上有两个音频设备hdmi和耳机,在系统中是 sun4i-sndhdmi 和 sun4i-CODEC 两个设备。

在树莓派3 linux系统的终端输入 sudoalsamixer 可以看到两个音频设备的信息。

http://cubietech.com/data/attachment/forum/201303/22/152637vrzsm01tfr5fzim1.png

默认HDMI是0号设备,声音从HDMI输出,如果想改为默认耳机输出。新建一个

/etc/asound.conf文件,内容如下:

pcm.!default {
type hw
card 1
device 0
}

ctl.!default {
   type hw
   card 0
}

可以立即用命令测试

speaker-test -twav -c2

耳机里会听到左右声道输出,sound left,sound right,sound left。。。

出处:https://groups.google.com/forum/#!searchin/cubieboard/ALSA$20error$20when$20using$20pd-extended/cubieboard/WmbiLC34nTU/rEgnKzZMXtMJ

相关知识:
http://www.linuxjournal.com/content/change-volume-bash-script
http://unix.stackexchange.com/qu ... ne-to-change-volume
页: [1]
查看完整版本: 树莓派3-- 设置默认声音耳机输出 ---linux系统教程