Paul Sorenson wrote:

I have alsa compiled and running on my RH 8.0 box. I can use aplay, play
just fine but no sound comes out of xmms. I believe I have the oss
emulation running.

Any tips?



-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
Alsa-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/alsa-user
_____________________________________________________________________
GRAND JEU SMS : Pour gagner un NOKIA 7650, envoyez le mot IF au 61321
(prix d'un SMS + 0.35 euro). Un SMS vous dira si vous avez gagné.
Règlement : http://www.ifrance.com/_reloc/sign.sms


Have you unmuted the correct channels ?
For example, I do this at starting :

#!/bin/sh


# The Oss emulation
echo "Loading Oss emulation..." &&
modprobe snd-seq-oss &&
modprobe snd-pcm-oss &&
modprobe snd-mixer-oss &&
echo "OK" &&
# unmute Master Stereo
amixer -c 0 set Master 80% unmute &&
# unmute PCM (This really set the volume)
amixer -c 0 set PCM 80% unmute &&
# unmute Headphones
amixer -c 0 set Headphone 80% unmute &&
# unmute Master Mono (We can use it for record)
amixer -c 0 set 'Master Mono' 80% unmute &&
# unmute Auxiliaries
amixer -c 0 set Aux 80% unmute

This is for my soundcard (ens1371), try to tune it to get it with yours.

_____________________________________________________________________
GRAND JEU SMS : Pour gagner un NOKIA 7650, envoyez le mot IF au 61321
(prix d'un SMS + 0.35 euro). Un SMS vous dira si vous avez gagné.
Règlement : http://www.ifrance.com/_reloc/sign.sms



-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
Alsa-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/alsa-user

Reply via email to