in my ~/.asoundrc and use `hdsp_analog` as output device in xmms.
please, can you tell me how do you set this?
in my case "options-settings-configure output plugin" only accepts
something
which begins with "/", like "/dev..."what ever, but it does not
accepts "hdsp_analog"?
Mor infos to goup your channels can be found here:
http://www.linuxjournal.com/article/7024
regards
Martin
hi,
I think that's because hdsp_analog isn't initialized. If your hdsp is
hw:0 then you have to set pcm.hdsp to card 0.
Your asoundrc should look like this then (added groups for adat and
spdif like in the article above):
pcm.hdsp {
type hw
card 0
}
ctl.hdsp {
type hw
card 0
}
pcm.hdsp_analog {
type plug
ttable.0.0 1
ttable.1.1 1
ttable.2.2 1
ttable.3.3 1
ttable.4.4 1
ttable.5.5 1
ttable.6.6 1
ttable.7.7 1
slave.pcm hdsp
}
pcm.hdsp_adat {
type plug
ttable.0.8 1
ttable.1.9 1
ttable.2.10 1
ttable.3.11 1
ttable.4.12 1
ttable.5.13 1
ttable.6.14 1
ttable.7.15 1
slave.pcm hdsp
}
pcm.hdsp_spdif {
type plug
ttable.0.16 1
ttable.1.17 1
slave.pcm hdsp
}
ok, changed.
you can check the number of your hdsp through:
cat /proc/asound/cards
nowhiskey@murija2:~$ cat /proc/asound/cards
0 [DSP ]: H-DSP - Hammerfall DSP
RME Hammerfall DSP + Multiface at 0xd2000000, irq 11
1 [Audio ]: USB-Audio - USB Audio
USB Audio at usb-0000:00:1d.1-2, full speed
2 [I82801DBICH4 ]: ICH4 - Intel 82801DB-ICH4
Intel 82801DB-ICH4 with AD1981B at 0xd0100c00, irq 11
nowhiskey@murija2:~$
and test your setting using
aplay -d hdsp_analog <path_to_a_wav_or_pcm_file"
is this doesn't work try to check if it's usable as plugdevice:
aplay -d plughw:0,0 <path_to_a_wav_or_pcm_file"
that both works.
but i found out that stopping jack and starting xmms than, everything
runs good, so the problem must be with "jacklaunch" ?
good lucknowhiskey@murija2:~$ cat /proc/asound/cards
0 [DSP ]: H-DSP - Hammerfall DSP
RME Hammerfall DSP + Multiface at 0xd2000000, irq 11
1 [Audio ]: USB-Audio - USB Audio
USB Audio at usb-0000:00:1d.1-2, full speed
2 [I82801DBICH4 ]: ICH4 - Intel 82801DB-ICH4
Intel 82801DB-ICH4 with AD1981B at 0xd0100c00, irq 11
nowhiskey@murija2:~$
Martin
cheers,
doc