Kodi Community Forum

Full Version: Dharma Live Beta - Menu sounds - R3610
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

Just installed Dharma Beta as a fresh install on my R3610. I've got no menu sounds. Anyone know what the fix is? I've tried adding entries to /home/xbmc/.asoundrc and also to /etc/asound.conf - neither has worked but I'm not sure which is the correct method anyway?

Thanks.
MrCarbo Wrote:Hi,

Just installed Dharma Beta as a fresh install on my R3610. I've got no menu sounds. Anyone know what the fix is? I've tried adding entries to /home/xbmc/.asoundrc and also to /etc/asound.conf - neither has worked but I'm not sure which is the correct method anyway?

Thanks.

create a file in /home/xbmc/.asoundrc

sudo nano /home/xbmc/.asoundrc

Put in

Code:
pcm.!default {
    type plug
    slave.pcm "dmixer"
}


save and reboot.

I have this in my .asoundrc file (taken from another website that is supposed to help with cross fading issues but doesn't seem to).

Code:
pcm.!default {
    type plug
    slave.pcm "dmixer"
}
pcm.dsp0 {
    type plug
    slave.pcm "dmixer"
}
pcm.dmixer {
    type dmix
    ipc_key 1024
    slave {
        pcm "hw:0,3"
        period_time 0
        period_size 1024
        buffer_size 8192
        #periods 128
        rate 44100
     }
     bindings {
        0 0
        1 1
     }
}
ctl.mixer0 {
    type hw
    card 0
}