summaryrefslogtreecommitdiffstats
path: root/man
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2007-11-06 00:21:20 +0000
committerLennart Poettering <lennart@poettering.net>2007-11-06 00:21:20 +0000
commit5dbab0b23aa373f5eb61faf2b0cbae24f05570fa (patch)
tree832f29dbb50c1fe8b6db2b934a55cd6a7f2a5dde /man
parent0eb011bda093438044338946d575ff7845e6aa3c (diff)
complete pactl man page
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@2026 fefdeb5f-60dc-0310-8127-8f9354f1896f
Diffstat (limited to 'man')
-rw-r--r--man/pactl.1.xml.in76
1 files changed, 61 insertions, 15 deletions
diff --git a/man/pactl.1.xml.in b/man/pactl.1.xml.in
index 0b7b9a78..d30d5f7c 100644
--- a/man/pactl.1.xml.in
+++ b/man/pactl.1.xml.in
@@ -26,24 +26,26 @@ USA.
<manpage name="pactl" section="1" desc="Control a running PulseAudio sound server">
<synopsis>
- <cmd>pulseaudio [<arg>options</arg>] stat</cmd>
- <cmd>pulseaudio [<arg>options</arg>] list</cmd>
- <cmd>pulseaudio [<arg>options</arg>] exit</cmd>
- <cmd>pulseaudio [<arg>options</arg>] upload-sample <arg>FILENAME</arg> [<arg>NAME</arg>]</cmd>
- <cmd>pulseaudio [<arg>options</arg>] play-sample <arg>NAME</arg> [<arg>SINK</arg>]</cmd>
- <cmd>pulseaudio [<arg>options</arg>] remove-sample <arg>NAME</arg></cmd>
- <cmd>pulseaudio [<arg>options</arg>] move-sink-input <arg>ID</arg> <arg>SINK</arg></cmd>
- <cmd>pulseaudio [<arg>options</arg>] move-source-input <arg>ID</arg> <arg>SOURCE</arg></cmd>
- <cmd>pulseaudio [<arg>options</arg>] load-module <arg>NAME</arg> [<arg>ARGUMENTS ...</arg>]</cmd>
- <cmd>pulseaudio [<arg>options</arg>] unload-module <arg>ID</arg></cmd>
- <cmd>pulseaudio [<arg>options</arg>] suspend-sink [<arg>SINK</arg>] <arg>1|0</arg></cmd>
- <cmd>pulseaudio [<arg>options</arg>] suspend-source [<arg>SOURCE</arg>] <arg>1|0</arg></cmd>
- <cmd>pulseaudio <opt>--help</opt></cmd>
- <cmd>pulseaudio <opt>--version</opt></cmd>
+ <cmd>pactl [<arg>options</arg>] stat</cmd>
+ <cmd>pactl [<arg>options</arg>] list</cmd>
+ <cmd>pactl [<arg>options</arg>] exit</cmd>
+ <cmd>pactl [<arg>options</arg>] upload-sample <arg>FILENAME</arg> [<arg>NAME</arg>]</cmd>
+ <cmd>pactl [<arg>options</arg>] play-sample <arg>NAME</arg> [<arg>SINK</arg>]</cmd>
+ <cmd>pactl [<arg>options</arg>] remove-sample <arg>NAME</arg></cmd>
+ <cmd>pactl [<arg>options</arg>] move-sink-input <arg>ID</arg> <arg>SINK</arg></cmd>
+ <cmd>pactl [<arg>options</arg>] move-source-input <arg>ID</arg> <arg>SOURCE</arg></cmd>
+ <cmd>pactl [<arg>options</arg>] load-module <arg>NAME</arg> [<arg>ARGUMENTS ...</arg>]</cmd>
+ <cmd>pactl [<arg>options</arg>] unload-module <arg>ID</arg></cmd>
+ <cmd>pactl [<arg>options</arg>] suspend-sink [<arg>SINK</arg>] <arg>1|0</arg></cmd>
+ <cmd>pactl [<arg>options</arg>] suspend-source [<arg>SOURCE</arg>] <arg>1|0</arg></cmd>
+ <cmd>pactl <opt>--help</opt></cmd>
+ <cmd>pactl <opt>--version</opt></cmd>
</synopsis>
<description>
- <p>PulseAudio is a networked low-latency sound server for Linux, POSIX and Windows systems.</p>
+ <p><file>pactl</file> can be used to issue control commands to the PulseAudio sound server.</p>
+
+ <p><file>pactl</file> only exposes a subset of the available operations. For the full set use the <manref name="pacmd" section="1"/>.</p>
</description>
<options>
@@ -130,6 +132,50 @@ USA.
<optdesc><p>Move the specified recording stream (identified by its numerical index) to the specified source (identified by its symbolic name or numerical index).</p></optdesc>
</option>
+ <option>
+ <p><opt>load-module</opt> <arg>NAME</arg> [<arg>ARGUMENTS ...</arg>]</p>
+
+ <optdesc><p>Load the specified module with the specified arguments into the running sound server. Prints the numeric index of the module just loaded to STDOUT. You can use it to unload the module later.</p></optdesc>
+ </option>
+
+ <option>
+ <p><opt>unload-module</opt> <arg>ID</arg></p>
+
+ <optdesc><p>Unload the module instance identified by the specified numeric index.</p></optdesc>
+ </option>
+
+ <option>
+ <p><opt>unload-module</opt> <arg>ID</arg></p>
+
+ <optdesc><p>Unload the module instance identified by the specified numeric index.</p></optdesc>
+ </option>
+
+ <option>
+ <p><opt>suspend-sink</opt> <arg>SINK</arg> <arg>1|0</arg></p>
+
+ <optdesc><p>Suspend or resume the specified sink (which my be
+ specified either by its symbolic name, or by its numeric index),
+ depending whether 1 (suspend) or 0 (resume) is passed as last
+ argument. Suspending a sink will pause all playback. Depending
+ on the module implementing the sink this might have the effect
+ that the underlying device is closed, making it available for
+ other applications to use. The exact behaviour depends on the
+ module.</p></optdesc>
+ </option>
+
+ <option>
+ <p><opt>suspend-source</opt> <arg>SOURCE</arg> <arg>1|0</arg></p>
+
+ <optdesc><p>Suspend or resume the specified source (which my be
+ specified either by its symbolic name, or by its numeric index),
+ depending whether 1 (suspend) or 0 (resume) is passed as last
+ argument. Suspending a source will pause all
+ capturing. Depending on the module implementing the source this
+ might have the effect that the underlying device is closed,
+ making it available for other applications to use. The exact
+ behaviour depends on the module.</p></optdesc>
+ </option>
+
</options>
<section name="Authors">