From f44ba092651aa75055e109e04b4164ea92ae7fdc Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Mon, 19 Jun 2006 21:53:48 +0000 Subject: big s/polyp/pulse/g git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@1033 fefdeb5f-60dc-0310-8127-8f9354f1896f --- doc/FAQ.html.in | 52 ++++++++++++------------- doc/Makefile.am | 8 ++-- doc/README.html.in | 108 ++++++++++++++++++++++++++-------------------------- doc/cli.html.in | 6 +-- doc/daemon.html.in | 8 ++-- doc/modules.html.in | 28 +++++++------- doc/style.css | 8 ++-- 7 files changed, 109 insertions(+), 109 deletions(-) (limited to 'doc') diff --git a/doc/FAQ.html.in b/doc/FAQ.html.in index a042dd7b..d9550e95 100644 --- a/doc/FAQ.html.in +++ b/doc/FAQ.html.in @@ -2,7 +2,7 @@ -polypaudio: FAQ +pulseaudio: FAQ @@ -57,64 +57,64 @@ reimplement very much code for Polypaudio. It should be easy to implement limited support for libartsc based applications. Noone has done this yet. It is probably a better idea to - run arts on top of Polypaudio (through a polypaudio driver + run arts on top of Polypaudio (through a pulseaudio driver for aRts, which nobody has written yet). Another solution would be to embed Polypaudio in the aRts process.

  • I often hear noises when playing back with Polypaudio, what can I do?

    -

    There are to possible solutions: run polypaudio with argument +

    There are to possible solutions: run pulseaudio with argument --high-priority=1 and make yourself member of the group realtime, or increase the fragment sizes of the audio drivers. The former will allow Polypaudio to activate SCHED_FIFO high priority scheduling (root rights are dropped immediately after this). Keep in mind that this is a potential security hole!

  • -
  • The polypaudio executable is installed SUID root by default. Why this? Isn't this a potential security hole?

    +
  • The pulseaudio executable is installed SUID root by default. Why this? Isn't this a potential security hole?

    Polypaudio activates SCHED_FIFO scheduling if the user passes --high-priority=1. This will only succeed when executed as root, therefore the binary is marked SUID root by -default. Yes, this is a potential security hole. However, polypaudio +default. Yes, this is a potential security hole. However, pulseaudio tries its best to minimize the security threat: immediately after -startup polypaudio drops all capabilities except +startup pulseaudio drops all capabilities except CAP_SYS_NICE (At least on systems that support it, like Linux; see man 7 capabilities for more information). If the calling user is not a member of the group realtime (which is required to have a GID < 1000), root rights are dropped immediately. This means, you can -install polypaudio SUID root, but only a subset of your users (the +install pulseaudio SUID root, but only a subset of your users (the members of the group realtime) may make use of realtime scheduling. Keep in mind that these users might load their own binary -modules into the polypaudio daemon which may freeze the machine. The +modules into the pulseaudio daemon which may freeze the machine. The daemon has a minimal protection against CPU hogging (the daemon is killed after hogging more than 70% CPU for 5 seconds), but this may be circumvented easily by evildoers.

  • -
  • I want to run polypaudio only when it is needed, how do I do this?

    +
  • I want to run pulseaudio only when it is needed, how do I do this?

    Set autospawn = yes in client.conf. That -configuration file may be found either in /etc/polypaudio/ or -in ~/.polypaudio/.

  • +configuration file may be found either in /etc/pulseaudio/ or +in ~/.pulseaudio/.

    -
  • How do I list all polypaudio modules installed?

    +
  • How do I list all pulseaudio modules installed?

    -

    polypaudio --dump-modules

    +

    pulseaudio --dump-modules

    Add -v for terse usage instructions.

    -
  • How do I use polypaudio over the network?

    +
  • How do I use pulseaudio over the network?

    -

    Just set $POLYP_SERVER to the host name of the polypaudio +

    Just set $POLYP_SERVER to the host name of the pulseaudio server. For authentication you need the same auth cookies on all sides. For -that copy ~./polypaudio-cookie to all clients that shall +that copy ~./pulseaudio-cookie to all clients that shall be allowed to connect.

    Alternatively the authorization cookies can be stored in the X11 server.

  • -
  • Is polypaudio capable of providing synchronized audio playback over the network for movie players like mplayer?

    +
  • Is pulseaudio capable of providing synchronized audio playback over the network for movie players like mplayer?

    Yes! Unless your network is congested in some way (i.e. transfer latencies vary strongly) it works perfectly. Drop me an email for experimental patches for MPlayer.

    -
  • What environment variables does polypaudio care about?

    +
  • What environment variables does pulseaudio care about?

    The client honors: POLYP_SINK (default sink to connect to), POLYP_SOURCE (default source to connect to), POLYP_SERVER (default server to connect to, like ESPEAKER), POLYP_BINARY (the binary to start when autospawning a daemon), POLYP_CLIENTCONFIG (path to the client configuration file).

    @@ -126,31 +126,31 @@ be allowed to connect.

    A brilliant guy named Lennart Poettering once wrote a nifty tool for that purpose: bidilink. To -connect to a running polypaudio daemon try using the following commands:

    +connect to a running pulseaudio daemon try using the following commands:

    -
    killall -USR2 polypaudio
    -bidilink unix-client:/tmp/polypaudio/cli
    +
    killall -USR2 pulseaudio
    +bidilink unix-client:/tmp/pulseaudio/cli

    BTW: Someone should package this great tool for Debian!

    New: There's now a tool pacmd that automates sending SIGUSR2 to the daemon and running a bidilink like tool for you.

  • -
  • How do the polypaudio libraries decide where to connect to?

    +
  • How do the pulseaudio libraries decide where to connect to?

    The following rule applies:

    1. If the the application using the library specifies a server to connect to it is used. If the connection fails, the library fails too.
    2. If the environment variable POLYP_SERVER is defined the library connects to that server. If the connection fails, the library fails too.
    3. If $DISPLAY is set, the library tries to connect to that server and looks for the root window property POYLP_SERVER for the host to connect to. If POLYP_COOKIE is set it is used as authentication cookie.
    4. -
    5. If the client configuration file (~/.polypaudio/client.conf or /etc/polypaudio/client.conf) sets the server address, the library connects to that server. If the connection fails, the library fails too.
    6. -
    7. The library tries to connect to the default local UNIX socket for polypaudio servers. If the connection fails, it proceeds with the next item.
    8. -
    9. The library tries to connect to the default local TCP socket for polypaudio servers. If the connection fails, it proceeds with the next item.
    10. +
    11. If the client configuration file (~/.pulseaudio/client.conf or /etc/pulseaudio/client.conf) sets the server address, the library connects to that server. If the connection fails, the library fails too.
    12. +
    13. The library tries to connect to the default local UNIX socket for pulseaudio servers. If the connection fails, it proceeds with the next item.
    14. +
    15. The library tries to connect to the default local TCP socket for pulseaudio servers. If the connection fails, it proceeds with the next item.
    16. If $DISPLAY is set, the library tries to connect to the default TCP port of that host. If the connection fails, it proceeds with the next item.
    17. The connection fails.
  • -
  • Why the heck does libpolyp link against libX11?

    +
  • Why the heck does libpulse link against libX11?

    The Polypaudio client libraries look for some X11 root window properties for the credentials of the Polypaudio server to access. You may compile Polypaudio without X11 for disabling this feature.

  • diff --git a/doc/Makefile.am b/doc/Makefile.am index a5884abd..a58911ad 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -1,19 +1,19 @@ # $Id$ -# This file is part of polypaudio. +# This file is part of PulseAudio. # -# polypaudio is free software; you can redistribute it and/or modify it +# PulseAudio is free software; you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # -# polypaudio is distributed in the hope that it will be useful, but +# PulseAudio is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU Lesser General Public License -# along with polypaudio; if not, write to the Free Software Foundation, +# along with PulseAudio; if not, write to the Free Software Foundation, # Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. noinst_DATA = README.html cli.html modules.html daemon.html FAQ.html diff --git a/doc/README.html.in b/doc/README.html.in index f35b2da9..2f6ad448 100644 --- a/doc/README.html.in +++ b/doc/README.html.in @@ -3,12 +3,12 @@ -polypaudio @PACKAGE_VERSION@ +pulseaudio @PACKAGE_VERSION@ -

    polypaudio @PACKAGE_VERSION@

    +

    pulseaudio @PACKAGE_VERSION@

    Copyright 2004-2006 Lennart Poettering <@PACKAGE_BUGREPORT@> and Pierre Ossman

    @@ -44,7 +44,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.

    News

    Fri Jun 2 2006:

    Version 0.9.1 +href="@PACKAGE_URL@pulseaudio-0.9.1.tar.gz">Version 0.9.1 released; changes include: load modules even when libtool .la files are missing; generate better ALSA device names from module-detect; if an ALSA device doesn't support the @@ -53,7 +53,7 @@ suggests instead; amd64 portability; drop .sh suffix of esdcompat.sh; build system fixes; No API or ABI changes were made

    Fri May 26 2006:

    Version 0.9.0 +href="@PACKAGE_URL@pulseaudio-0.9.0.tar.gz">Version 0.9.0 released; changes include: new module module-volume-restore; new OSS API emulation tool padsp; require valid UTF8 strings everywhere; properly support ALSA channel maps for surround sound; @@ -62,7 +62,7 @@ main loop API for synchronous programs; introduce real shared object versioning; a few API additions; many, many bugfixes

    Fri Apr 28 2006:

    Version 0.8.1 +href="@PACKAGE_URL@pulseaudio-0.8.1.tar.gz">Version 0.8.1 released; changes include: support for specifying the channel map on the command lines of paplay and pacat and as arguments to the driver modules; ALSA hardware mixer compatibility; @@ -70,16 +70,16 @@ fix linking; properly remove PF_UNIX sockets when unloading protocol modules; fix sample cache; many other fixes

    Thu Apr 13 2006:

    Version 0.8 released; -changes include: too many to count - consider reading this blog entry for more information; many, many minor fixes.

    +href="@PACKAGE_URL@pulseaudio-0.8.tar.gz">Version 0.8 released; +changes include: too many to count - consider reading this blog entry for more information; many, many minor fixes.

    Sun Nov 21 2004:

    Version 0.7 released; +href="@PACKAGE_URL@pulseaudio-0.7.tar.gz">Version 0.7 released; changes include: IPv6 support; PID file support; publish credentials in X11 root window (module-x11-publish; new tool pacmd; ESOUND backend; new command load-sample-dir-lazy; many, many minor fixes.

    Thu Oct 28 2004:

    Version 0.6 released; +href="@PACKAGE_URL@pulseaudio-0.6.tar.gz">Version 0.6 released; changes include: TCP wrappers support; don't load the complete sound file into memory when playing back using pa_play_file(); autoload API change; don't load all sound files as FLOAT32; shorten @@ -91,14 +91,14 @@ generation; correctly lock daemon autospawning; print daemon layout to STDERR on SIGHUP; new options for pacat: allow sample type specification.

    Mon Sep 24 2004:

    Version 0.5.1 released; +href="@PACKAGE_URL@pulseaudio-0.5.1.tar.gz">Version 0.5.1 released; changes include: improve esound protocol compatibility; fix autospawning via libesd; make use of POSIX capabilities; allow SCHED_FIFO scheduling only for users in group realtime; minor build system fix.

    Mon Sep 20 2004:

    Version 0.5 released; +href="@PACKAGE_URL@pulseaudio-0.5.tar.gz">Version 0.5 released; changes include: extensive API improvements, new module module-combine for combining multiple sound cards into one, gcc 2.95 compatibility, configuration files, add "lazy" samples, @@ -106,29 +106,29 @@ support for source and network latency measurements, add module-pipe-source, many other fixes and improvements.

    Wed Sep 8 2004:

    Version 0.4 released; +href="@PACKAGE_URL@pulseaudio-0.4.tar.gz">Version 0.4 released; changes include: daemon auto spawning, support for SCHED_FIFO scheduling, three new modules, proper logging, CPU load watchdog, many fixes.

    Fri Aug 27 2004:

    Version 0.3 released; +href="@PACKAGE_URL@pulseaudio-0.3.tar.gz">Version 0.3 released; changes include: support for both glib 2.0 and glib 1.2, future cancellation, API updates, many fixes, relicense client library to LGPL.

    Fri Aug 20 2004:

    Version 0.2 released; +href="@PACKAGE_URL@pulseaudio-0.2.tar.gz">Version 0.2 released; changes include: added sample cache, introspection API, client API documentation, module autoloading, glib support, a module for intercepting X11 bell events, and much more.

    Sat Jul 17 2004:

    Version 0.1 released

    +href="@PACKAGE_URL@pulseaudio-0.1.tar.gz">Version 0.1 released

    Overview

    -

    polypaudio is a networked sound server for Linux and other +

    pulseaudio is a networked sound server for Linux and other Unix like operating systems and Microsoft Windows. It is intended to be an improved drop-in replacement for the Enlightened Sound Daemon (ESOUND). In addition to the features ESOUND provides -polypaudio has:

    +pulseaudio has:

    -

    A GTK GUI manager application for polypaudio is the A GTK GUI manager application for pulseaudio is the Polypaudio Manager. Other GTK GUI tool for Polypaudio are the Polypaudio Volume @@ -195,10 +195,10 @@ href="http://0pointer.de/lennart/projects/pavucontrol">Polypaudio Volume Control .

    There are output plugins for XMMS, libao +href="http://0pointer.de/lennart/projects/xmms-pulse/">XMMS, libao (merged in libao SVN) and gstreamer +href="http://0pointer.de/lennart/projects/gst-pulse/">gstreamer (merged in gstreamer-plugins CVS), MPlayer (merged in MPlayer CVS) and Xine (merged in Xine CVS). Drivers for @@ -216,68 +216,68 @@ href="modules.html">modules.html, cli.html, daemon.html and FAQ.html.

    -

    There is a Trac based Wiki for Polypaudio available.

    +

    There is a Trac based Wiki for Polypaudio available.

    First Steps

    -

    Simply start the polypaudio daemon with the argument -nC

    +

    Simply start the pulseaudio daemon with the argument -nC

    -
    polypaudio -nC
    +
    pulseaudio -nC

    This will present you a screen like this:

    -
    Welcome to polypaudio! Use "help" for usage information.
    +
    Welcome to pulseaudio! Use "help" for usage information.
     >>> 

    Now you can issue CLI commands as described in cli.html. Another way to start -polypaudio is by specifying a configuration script like that one included in the distribution on the +pulseaudio is by specifying a configuration script like that one included in the distribution on the command line :

    -
    polypaudio -nF polypaudio.pa
    +
    pulseaudio -nF pulseaudio.pa

    This will load some drivers and protocols automatically.

    -

    The best idea is to configure your daemon in /etc/polypaudio/daemon.conf and /etc/polypaudio/default.pa and to run polypaudio without any arguments.

    +

    The best idea is to configure your daemon in /etc/pulseaudio/daemon.conf and /etc/pulseaudio/default.pa and to run pulseaudio without any arguments.

    Beware! Unless you pass the option --sysconfdir=/etc to -configure, the directory /etc/polypaudio/ is really -/usr/local/etc/polypaudio/.

    +configure, the directory /etc/pulseaudio/ is really +/usr/local/etc/pulseaudio/.

    -

    Developing polypaudio Clients

    +

    Developing pulseaudio Clients

    You may browse the Doxygen generated programing +href="http://0pointer.de/lennart/projects/pulseaudio/doxygen/">programing documentation for the client API. (Run make doxygen to generate this documentation from the source tree)

    -

    Developing polypaudio Modules

    +

    Developing pulseaudio Modules

    -

    There are several reasons for writing loadable modules for polypaudio:

    +

    There are several reasons for writing loadable modules for pulseaudio:

    There is currently no documentation how to write loadable modules -for polypaudio. Read the source, Luke! If you are interested in +for pulseaudio. Read the source, Luke! If you are interested in writing new modules feel free to contact the author in case you have any questions.

    Requirements

    -

    Currently, polypaudio is tested on Linux, FreeBSD, Solaris and Microsoft Windows. It requires an OSS, ALSA, Win32 or Solaris compatible soundcard.

    +

    Currently, pulseaudio is tested on Linux, FreeBSD, Solaris and Microsoft Windows. It requires an OSS, ALSA, Win32 or Solaris compatible soundcard.

    -

    polypaudio was developed and tested on Debian GNU/Linux +

    pulseaudio was developed and tested on Debian GNU/Linux "testing" from November 2004, it should work on most other Linux distributions (and maybe Unix versions) since it uses GNU autoconf and GNU libtool for source code configuration and shared library management.

    -

    polypaudio needs pulseaudio needs Secret Rabbit Code (aka libsamplerate), libsndfile, ./configure inside the distribution directory for configuring the source tree. After that you should run make for compilation and make install (as root) for installation of -polypaudio.

    +pulseaudio.

    Acknowledgements

    @@ -318,25 +318,25 @@ compilation and make install (as root) for installation of

    The newest release is always available from @PACKAGE_URL@

    -

    The current release is @PACKAGE_VERSION@

    +

    The current release is @PACKAGE_VERSION@

    -

    Get polypaudio's development sources from the Subversion repository (viewcvs):

    +

    Get pulseaudio's development sources from the Subversion repository (viewcvs):

    -
    svn checkout svn://0pointer.de/polypaudio/trunk polypaudio
    +
    svn checkout svn://0pointer.de/pulseaudio/trunk pulseaudio

    Community

    -

    If you want to be notified whenever I release a new version of this software use the subscription feature of Freshmeat.

    +

    If you want to be notified whenever I release a new version of this software use the subscription feature of Freshmeat.

    -

    There is a general discussion mailing list for polypaudio available. In addition, you can subscribe to SVN changes and Trac Tickets.

    +

    There is a general discussion mailing list for pulseaudio available. In addition, you can subscribe to SVN changes and Trac Tickets.

    -

    Polypaudio is being tracked at CIA.

    +

    Polypaudio is being tracked at CIA.

    -

    There's a chance to meet the Polypaudio developers on our IRC channel #polypaudio on irc.freenode.org.

    +

    There's a chance to meet the Polypaudio developers on our IRC channel #pulseaudio on irc.freenode.org.

    -

    There is a Trac based Wiki for Polypaudio available.

    +

    There is a Trac based Wiki for Polypaudio available.

    -

    Please report bugs to our Trac ticket system.

    +

    Please report bugs to our Trac ticket system.


    Lennart Poettering <@PACKAGE_BUGREPORT@>, June 2006
    diff --git a/doc/cli.html.in b/doc/cli.html.in index 0db96c36..511f5964 100644 --- a/doc/cli.html.in +++ b/doc/cli.html.in @@ -2,14 +2,14 @@ -polypaudio: Simple Command Line Language +pulseaudio: Simple Command Line Language

    Simple Command Line Language

    -

    polypaudio provides a simple command line language used by +

    pulseaudio provides a simple command line language used by configuration scripts as well as the modules module-cli and module-cli-protocol-{unix,tcp}. Empty lines and lines beginning with a hashmark (#) are silently ignored. Several @@ -181,7 +181,7 @@ on the interactive command line.

    Example Configuration Script

    -

    Mark the following script as executable (chmod +x) and run it for a sensible polypaudio configuration.

    +

    Mark the following script as executable (chmod +x) and run it for a sensible pulseaudio configuration.

     #!/usr/bin/polaudio -nF
    diff --git a/doc/daemon.html.in b/doc/daemon.html.in
    index a4db0bd7..0d91e534 100644
    --- a/doc/daemon.html.in
    +++ b/doc/daemon.html.in
    @@ -2,7 +2,7 @@
     
     
     
    -polypaudio: Daemon
    +pulseaudio: Daemon
     
     
     
    @@ -11,7 +11,7 @@
     
     

    Command Line Arguments

    -The polypaudio daemon accepts several command line arguments: +The pulseaudio daemon accepts several command line arguments:
     COMMANDS:
    @@ -58,9 +58,9 @@ STARTUP SCRIPT:
     
     

    It is a good idea to run the daemon like this:

    -
    polypaudio -D
    +
    pulseaudio -D
    -

    This will run /etc/polypaudio/default.pa after startup. This should be a script written in the CLI language described in cli.html.

    +

    This will run /etc/pulseaudio/default.pa after startup. This should be a script written in the CLI language described in cli.html.

    Signals

    diff --git a/doc/modules.html.in b/doc/modules.html.in index 85479523..f004f084 100644 --- a/doc/modules.html.in +++ b/doc/modules.html.in @@ -2,7 +2,7 @@ -polypaudio: Loadable Modules +pulseaudio: Loadable Modules @@ -10,7 +10,7 @@

    Loadable Modules

    -

    The following loadable modules are provided with the polypaudio distribution:

    +

    The following loadable modules are provided with the pulseaudio distribution:

    Device Drivers

    @@ -157,7 +157,7 @@ will decrease output quality however. (defaults to

    module-tunnel-{sink,source}

    Tunnel a remote sink/source to a local "ghost" -sink/source. Requires a running polypaudio daemon on the remote server +sink/source. Requires a running pulseaudio daemon on the remote server with module-native-protocol-tcp loaded. It's probably a better idea to connect to the remote sink/source directly since some buffer control is lost through this tunneling.

    @@ -204,7 +204,7 @@ module see cli.html.

    module-cli-protocol-{unix,tcp}

    An implemenation of a simple command line based protocol for -controlling the polypaudio daemon. If loaded, the user may +controlling the pulseaudio daemon. If loaded, the user may connect with tools like netcat, telnet or bidilink to the listening sockets and execute commands the same way as with module-cli.

    @@ -225,7 +225,7 @@ transparent TCP/IP socket. (Both IPv6 and IPv4 - if available)

    a numerical binary value. If 1 the socket is bound to the loopback device, i.e. not publicly accessible. (defaults to 1) listen=(only for -tcp) The IP address to listen on. If specified, supersedes the value specified in loopback= - socket=(only for -unix) The UNIX socket name (defaults to /tmp/polypaudio/cli) + socket=(only for -unix) The UNIX socket name (defaults to /tmp/pulseaudio/cli)

    module-simple-protocol-{unix,tcp}

    @@ -254,7 +254,7 @@ about the two possible suffixes of this module.

    An implemenation of a protocol compatible with the Enlightened Sound Daemon (ESOUND, esd). When you load this module you may -access the polypaudio daemon with tools like esdcat, +access the pulseaudio daemon with tools like esdcat, esdrec or even esdctl. Many applications, such as XMMS, include support for this protocol.

    @@ -273,7 +273,7 @@ about the two possible suffixes of this module.

    module-native-protocol-{unix,tcp}

    -

    The native protocol of polypaudio.

    +

    The native protocol of pulseaudio.

    See module-cli-protocol-{unix,tcp} for more information about the two possible suffixes of this module.

    @@ -293,7 +293,7 @@ about the two possible suffixes of this module.

    module-http-protocol-tcp

    A proof-of-concept HTTP module, which can be used to introspect -the current status of the polypaudio daemon using HTTP. Just load this +the current status of the pulseaudio daemon using HTTP. Just load this module and point your browser to http://localhost:4714/. This module takes the same arguments as module-cli-protocol-tcp.

    @@ -347,7 +347,7 @@ already loaded protocol module is used. - +
    config=The LIRC configuration file
    appname=The application name to pass to LIRC (defaults to polypaudio)
    appname=The application name to pass to LIRC (defaults to pulseaudio)
    sink=The sink to control
    @@ -430,7 +430,7 @@ created in the JACK server.

    - +
    sink_name=The name for the Polypaudio sink. If ommited defaults to jack_out.
    server_name=The JACK server to connect to. If ommited defaults to the default server.
    client_name=The client name to tell the JACK server. If ommited defaults to polypaudio.
    client_name=The client name to tell the JACK server. If ommited defaults to pulseaudio.
    channels=Number of channels to register. If ommited defaults to the number of physical playback ports of the JACK server.
    connect=Takes a boolean value. If enabled (the default) Polypaudio will try to connect its ports to the physicial playback ports of the JACK server
    @@ -455,18 +455,18 @@ which is replaced by source_name (with a default of jack_in) f

    module-esound-compat-spawnfd

    -

    This is a compatibility module for libesd based autospawning of polypaudio. Don't use it directly.

    +

    This is a compatibility module for libesd based autospawning of pulseaudio. Don't use it directly.

    module-esound-compat-spawnpid

    -

    This is a compatibility module for libesd based autospawning of polypaudio. Don't use it directly.

    +

    This is a compatibility module for libesd based autospawning of pulseaudio. Don't use it directly.

    module-match

    Adjust the volume of a playback stream automatically based on its name.

    - +
    table=The regular expression matching table file to use (defaults to ~/.polypaudio/match.table)
    table=The regular expression matching table file to use (defaults to ~/.pulseaudio/match.table)

    The table file should contain a regexp and volume on each line, seperated by spaces. An example:

    @@ -482,7 +482,7 @@ which is replaced by source_name (with a default of jack_in) f

    Adjust the volume of a playback stream automatically based on its name.

    - +
    table=The table file to use (defaults to ~/.polypaudio/volume.table)
    table=The table file to use (defaults to ~/.pulseaudio/volume.table)

    In contrast to module-match this module needs no explicit diff --git a/doc/style.css b/doc/style.css index a606c08e..c5af0055 100644 --- a/doc/style.css +++ b/doc/style.css @@ -1,20 +1,20 @@ /* $Id$ */ /*** - * This file is part of polypaudio. + * This file is part of PulseAudio. * - * polypaudio is free software; you can redistribute it and/or modify it + * PulseAudio is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * - * polypaudio is distributed in the hope that it will be useful, but + * PulseAudio is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License - * along with polypaudio; if not, write to the Free Software Foundation, + * along with PulseAudio; if not, write to the Free Software Foundation, * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. ***/ -- cgit