<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD><TITLE></TITLE>
<META http-equiv=Content-Type content=text/html;charset=UTF-8>
<META content="MSHTML 6.00.2900.5512" name=GENERATOR></HEAD>
<BODY text=#000000 bgColor=#ffffff>
<DIV><FONT face=Arial color=#000000 size=2>hi</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>very thank , i will try this, only
aquestion:</FONT></DIV>
<DIV><FONT face=Arial color=#000000 size=2>to coment the autodetec module what
is the corret?</FONT></DIV>
<DIV><FONT face=Arial color=#000000 size=2></FONT> </DIV>
<DIV><FONT face=Arial color=#000000 size=2>#.ifexists
module-hal-detect.so<BR>#load-module module-hal-detect<BR>#.else<BR>#load-module
module-detect<BR>#.endif</FONT></DIV>
<DIV><FONT face=Arial color=#000000 size=2></FONT> </DIV>
<DIV><FONT face=Arial color=#000000 size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>or </FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial color=#000000 size=2>.ifexists
module-hal-detect.so<BR>#load-module module-hal-detect<BR>.else<BR>#load-module
module-detect<BR>.endif</FONT></DIV>
<DIV><FONT face=Arial color=#000000 size=2></FONT> </DIV>
<DIV><FONT face=Arial color=#000000 size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>very thank </FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<BLOCKQUOTE
style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
<DIV style="FONT: 10pt arial">----- Original Message ----- </DIV>
<DIV
style="BACKGROUND: #e4e4e4; FONT: 10pt arial; font-color: black"><B>From:</B>
<A title=rich.geddes@verizon.net href="mailto:rich.geddes@verizon.net">Richard
Geddes</A> </DIV>
<DIV style="FONT: 10pt arial"><B>To:</B> <A
title=pulseaudio-discuss@mail.0pointer.de
href="mailto:pulseaudio-discuss@mail.0pointer.de">General PulseAudio
Discussion</A> </DIV>
<DIV style="FONT: 10pt arial"><B>Sent:</B> Tuesday, June 03, 2008 6:02
PM</DIV>
<DIV style="FONT: 10pt arial"><B>Subject:</B> Re: [pulseaudio-discuss] Help in
setting up PA... SOLVED</DIV>
<DIV><BR></DIV>Now as I understand it, when linux starts, <BR><BR>1) there is
a program called hald (hardware abstraction layer daemon) that identifies the
hardware attached to your computer. In the output of aplay, each card is
given an identifier... "tarjeta {0 -3}"<BR><BR>2) other programs like pa
use the info hald provides to make decisions about how to use the
hardware.<BR><BR>In the case of tarjeta 2 - <FONT size=+0><FONT
face=Arial color=#000000 size=2>EWX2496 using the </FONT></FONT>ice1712
driver (this same chip is in my tarjeta), apparently pulseaudio or hald did
not identify it correctly, and when trying to connect to this tarjeta, pa
realizes this and says no.<BR><BR>The default global pa config file
(/etc/pulse/default.pa) in ubuntu has these statements: <BR><BR>.ifexists
module-hal-detect.so<BR>load-module module-hal-detect<BR>.else<BR>load-module
module-detect<BR>.endif<BR><BR>which is a means of auto-detecting the tarjetas
on your system. Let's change this:<BR><BR>1) make a copy of your
original global config file<BR> cd
/etc/pulse/<BR> sudo cp default.pa
default.pa.original<BR><BR>2) comment out the lines that deal with auto
detecting the tarjetas (the lines above)<BR><BR>3) Add these lines in it's
place: sudo [vi,gedit,...] default.pa<BR>------------<BR>#
Load the devices:<BR>load-module module-alsa-sink sink_name=nvidia_out
device=hw:0<BR>load-module module-alsa-source source_name=nvidia_in
device=hw:0<BR><BR>load-module module-alsa-sink sink_name=hdmi_out
device=hw:1<BR>load-module module-alsa-source source_name=hdmi_in
device=hw:1<BR><BR>load-module module-alsa-sink sink_name=ewx2496_out
device=hw:2 channels=10
channel_map=left,right,aux0,aux1,aux2,aux3,aux4,aux5,aux6,aux7<BR>load-module
module-alsa-source source_name=ewx2496_in device=hw:2 channels=12
channel_map=left,right,aux0,aux1,aux2,aux3,aux4,aux5,aux6,aux7,aux8,aux9<BR><BR>load-module
module-alsa-sink sink_name=e192m_out device=hw:3<BR>load-module
module-alsa-source source_name=e192m_in device=hw:3<BR><BR># Select default
device<BR>set-default-sink nvidia_out <BR>set-default-source
nvidia_in<BR>------------------------<BR><BR>Note: We are telling pa to use
devices identified by your system labeled hw:{0,1,2,3}... nothing special,
except for the ewx2496 that uses the ice1712 device driver. This is the
same chip my tarjeta uses, and in that case I had to add extra information
about the chip... the part that says "channel_map=..." I'm not sure if
the other tarjetas need special mappings or instructions, but give this a
try.<BR><BR>4) Restart pa ... in ubuntu, I would try "sudo
/etc/init.d/pulseaudio {start,stop,...} and it would not give feedback if the
server status had changed. So I would use the pa manager (paman) to
start/stop the pa server. Frequently, I would not know if the server was
still running and would use "ps aux | grep pulse" to check
status.<BR><BR>Let's see what happens<BR><BR><BR>Juan A Fuentes Bermudez
wrote:
<BLOCKQUOTE cite=mid:A1E581EE33F747CE9A0BF206735CB56E@pc2 type="cite">
<META content="MSHTML 6.00.2900.5512" name=GENERATOR>
<STYLE></STYLE>
<DIV>1) Tell me which cards are identified by the alsamixer and which cards
are identified by pa(pulseaudio).</DIV>
<DIV> </DIV>
<DIV><FONT face=Arial color=#000000 size=2>asoundconf list<BR>Names of
available sound cards:<BR>NVidia (identified by
PA)<BR>HDMI<BR>EWX2496<BR>E192M (identified by PA)</FONT></DIV>
<DIV> </DIV><FONT face=Arial color=#000000 size=2>
<DIV><BR>aplay -l<BR>**** Lista de PLAYBACK Dispositivos Hardware
****<BR>tarjeta 0: NVidia [HDA NVidia], dispositivo 0: AD198x Analog [AD198x
Analog]<BR> Subdispositivos: 1/1<BR> Subdispositivo #0:
subdevice #0<BR>tarjeta 0: NVidia [HDA NVidia], dispositivo 1: AD198x
Digital [AD198x Digital]<BR> Subdispositivos: 1/1<BR>
Subdispositivo #0: subdevice #0<BR>tarjeta 1: HDMI [HDA ATI HDMI],
dispositivo 3: ATI HDMI [ATI HDMI]<BR> Subdispositivos: 1/1<BR>
Subdispositivo #0: subdevice #0<BR>tarjeta 2: EWX2496 [TerraTec EWX24/96],
dispositivo 0: ICE1712 multi [ICE1712 multi]<BR> Subdispositivos:
1/1<BR> Subdispositivo #0: subdevice #0<BR>tarjeta 3: E192M [ESI
Waveterminal 192M], dispositivo 0: ICE1724 [ICE1724]<BR>
Subdispositivos: 1/1<BR> Subdispositivo #0: subdevice #0<BR>tarjeta 3:
E192M [ESI Waveterminal 192M], dispositivo 1: ICE1724 Secondary [ICE1724
Secondary]<BR> Subdispositivos: 1/1<BR> Subdispositivo #0:
subdevice #0<BR>tarjeta 3: E192M [ESI Waveterminal 192M], dispositivo 2:
ICE1724 Surrounds [ICE1724 Surround PCM]<BR> Subdispositivos:
3/3<BR> Subdispositivo #0: subdevice #0<BR> Subdispositivo #1:
subdevice #1<BR> Subdispositivo #2: subdevice #2</DIV></FONT>
<DIV> </DIV>
<DIV> </DIV>
<DIV>2) Can you make sound with your speakers with pa and the cards that it
does identify?<BR><FONT face=Arial color=#000000 size=2>yes i need to route
the sound thru the no identified sound cards via PA</FONT></DIV>
<DIV> </DIV>
<DIV><FONT face=Arial size=2>when i por example, play a mp3, i can route via
alsa the sound thru devices that no identified in PA, i am sure that
card is runing correctly</FONT><BR></DIV>
<DIV> </DIV>
<DIV><FONT face=Arial color=#000000 size=2>sorry and very thank
</FONT></DIV>
<DIV> </DIV>
<DIV> </DIV><PRE wrap=""><HR width="90%" SIZE=4>
_______________________________________________
pulseaudio-discuss mailing list
<A class=moz-txt-link-abbreviated href="mailto:pulseaudio-discuss@mail.0pointer.de">pulseaudio-discuss@mail.0pointer.de</A>
<A class=moz-txt-link-freetext href="https://tango.0pointer.de/mailman/listinfo/pulseaudio-discuss">https://tango.0pointer.de/mailman/listinfo/pulseaudio-discuss</A>
</PRE></BLOCKQUOTE>
<P>
<HR>
<P></P>_______________________________________________<BR>pulseaudio-discuss
mailing
list<BR>pulseaudio-discuss@mail.0pointer.de<BR>https://tango.0pointer.de/mailman/listinfo/pulseaudio-discuss<BR></BLOCKQUOTE></BODY></HTML>