树莓派/播放/默认声卡

时间:2016-09-17 22:59:37

标签: audio raspberry-pi raspbian alsa

我购买了#34; Sound Blaster Play! 2"我的覆盆子pi的声卡3.操作系统是raspbian jessie。

当我跑

时,我的覆盆子pi上的音频会起作用
 $ aplay /usr/share/sounds/alsa/Front_Center.wav -D sysdefault:CARD=S2

但只有当我使用-D时。当我使用

$ aplay /usr/share/sounds/alsa/Front_Center.wav

它显示:

aplay: set_params:1239: Channels count non available

我需要这个节点扬声器。

以下是ALSA信息脚本的输出:http://www.alsa-project.org/db/?f=bdefa248fdedb34929d492e65ea941f2af40dcb2

1 个答案:

答案 0 :(得分:16)

好的,我找到了解决方案..

我的新~/.asoundrc

pcm.!default {
        type plug
        slave {
                pcm "hw:0,0"
        }
}

ctl.!default {
        type hw
        card 0
}

而不是

pcm.!default {
        type hw
        card 0
}

ctl.!default {
        type hw
        card 0
}

魔术:)