<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html;charset=UTF-8" http-equiv="Content-Type">
<title></title>
</head>
<body bgcolor="#ffffff" text="#000000">
Thanks for the response.<br>
<br>
Currently, I'd like to use PA as a replacement for esound... to
basically send audio from different programs and from my audio capture
card to my audio playback card (capture and playback are on the same
card), taking advantage of mixing and syncing features of PA. Sending
sound packets out to the network is interesting and I'd like to try
that later.<br>
<br>
Here's the uncommented part of my /etc/pulse/default.pa file:<br>
<br>
----<br>
#!/usr/bin/pulseaudio -nF <br>
<br>
.ifexists /usr/lib/pulse-0.9/modules/module-hal-detect.so<br>
load-module module-hal-detect<br>
.else<br>
load-module module-detect<br>
.endif<br>
<br>
add-autoload-sink output module-alsa-sink device=hw:0 sink_name=output<br>
add-autoload-source input module-alsa-source device=hw:0
source_name=input<br>
<br>
.ifexists /usr/lib/pulse-0.9/modules/module-esound-protocol-unix.so<br>
load-module module-esound-protocol-unix<br>
.endif<br>
<br>
load-module module-volume-restore<br>
<br>
load-module module-rescue-streams<br>
<br>
.nofail<br>
<br>
### Load something to the sample cache<br>
load-sample x11-bell /usr/share/sounds/gtk-events/activate.wav<br>
<br>
### Load X11 bell module<br>
load-module module-x11-bell sample=x11-bell<br>
<br>
### Publish connection data in the X11 root window<br>
load-module module-x11-publish<br>
<br>
load-module module-gconf<br>
----<br>
<br>
<br>
<br>
Tanu Kaskinen wrote:
<blockquote cite="mid:20080120102854.GA18427@a9a.mannikko1.tontut.fi"
type="cite">
<pre wrap="">On Sun, Jan 20, 2008 at 03:07:44AM -0500, Richard Geddes wrote:
</pre>
<blockquote type="cite">
<pre wrap="">Hi,
Just installed the PA packages on Ubuntu 7.10, with alsa drivers.
Followed (I think) the steps for set up from the PA "Perfect setup" web
page... when I try to run audio through PA (aplay -Dpulse music.mp3) no
sound goes to the speakers, however, I can see quite a few udp
packets being pushed through eth0... How can I get PA to send those
audio packets back to my audio card?
</pre>
</blockquote>
<pre wrap=""><!---->
You don't mention what kind of setup you want. RTP stuff
doesn't get loaded automatically, so I assume you do want to
broadcast all your audio to the LAN. If that is correct,
then the fix is probably quite simple. You probably have
this line in your default.pa, if you followed the FAQ:
load-module module-null-sink sink_name=rtp
Instead of a null sink, you want to use an actual alsa sink.
So do not load the null sink, but replace the 'source'
argument of module-rtp-send with the name of the alsa sink's
monitor source.
If you need further assistance, please explain what kind of
setup you want, and attach your /etc/pulse/default.pa.
</pre>
</blockquote>
</body>
</html>