2016-09-17 159 views
1

我爲我的樹莓派3購買了「Sound Blaster Play!2」聲卡。操作系統是raspbian jessie。覆盆子pi/aplay /默認聲卡

我樹莓派的聲音,當我運行

$ 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

回答

6

OK,我找到了解決辦法..

我的新~/.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 
} 

沒有魔法:)

+1

我認爲你一定是唯一一個在地球上做人的人。我很討厭尋找這個解決方案。我通常不會發布謝謝,但謝謝你先生,我在你的債務* SALUTES * –