Kodi Community Forum
Dharma Live Beta - Menu sounds - R3610 - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: General Support (https://forum.kodi.tv/forumdisplay.php?fid=111)
+---- Forum: Linux (https://forum.kodi.tv/forumdisplay.php?fid=52)
+---- Thread: Dharma Live Beta - Menu sounds - R3610 (/showthread.php?tid=80970)



Dharma Live Beta - Menu sounds - R3610 - MrCarbo - 2010-09-12

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.


- danz0l - 2010-09-12

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
}