diff options
author | Wim Taymans <wtaymans@redhat.com> | 2020-05-03 07:25:28 +0200 |
---|---|---|
committer | Wim Taymans <wtaymans@redhat.com> | 2020-05-03 07:25:28 +0200 |
commit | f46cbd2ac26076ec159461620f887c2595e5d106 (patch) | |
tree | d6090080313c7ed19c76a63a664651cfe97c947d /man | |
parent | 3037dd6b484bf8cb0078481e2b187c970fe45f52 (diff) |
man: add pw-cat beginnings
Diffstat (limited to 'man')
-rw-r--r-- | man/meson.build | 1 | ||||
-rw-r--r-- | man/pw-cat.1.xml.in | 78 |
2 files changed, 79 insertions, 0 deletions
diff --git a/man/meson.build b/man/meson.build index 66b04b68..ad502712 100644 --- a/man/meson.build +++ b/man/meson.build @@ -10,6 +10,7 @@ manpage_conf.set('top_builddir', meson.build_root()) manpages = [ [ 'pipewire', '1' ], [ 'pipewire.conf', '5' ], + [ 'pw-cat', '1' ], [ 'pw-cli', '1' ], [ 'pw-profiler', '1' ], [ 'pw-mon', '1' ] diff --git a/man/pw-cat.1.xml.in b/man/pw-cat.1.xml.in new file mode 100644 index 00000000..6662ff19 --- /dev/null +++ b/man/pw-cat.1.xml.in @@ -0,0 +1,78 @@ +<?xml version="1.0"?><!--*-nxml-*--> +<!DOCTYPE manpage SYSTEM "xmltoman.dtd"> +<?xml-stylesheet type="text/xsl" href="xmltoman.xsl" ?> + +<!-- +This file is part of PipeWire. +--> + +<manpage name="pw-cat" section="1" desc="Play an Record media with PipeWire"> + + <synopsis> + <cmd>pw-cat [<arg>options</arg>] [<arg>FILE</arg>]</cmd> + <cmd>pw-play [<arg>options</arg>] [<arg>FILE</arg>]</cmd> + <cmd>pw-record [<arg>options</arg>] [<arg>FILE</arg>]</cmd> + <cmd>pw-midiplay [<arg>options</arg>] [<arg>FILE</arg>]</cmd> + <cmd>pw-midirecord [<arg>options</arg>] [<arg>FILE</arg>]</cmd> + </synopsis> + + <description> + <p><file>pw-cat</file> is a simple tool for playing back or + capturing raw or encoded media files on a PipeWire + server. It understands all audio file formats supported by + <file>libsndfile</file>.</p> + </description> + + <options> + + <option> + <p><opt>-h | --help</opt></p> + + <optdesc><p>Show help.</p></optdesc> + </option> + + <option> + <p><opt>--version</opt></p> + <optdesc><p>Show version information.</p></optdesc> + </option> + + <option> + <p><opt>-v | --verbose</opt></p> + <optdesc><p>Verbose operation.</p></optdesc> + </option> + + <option> + <p><opt>-R | --remote</opt></p> + <optdesc><p>The name the remote instance to connect to. If left unspecified, + a connection is made to the default PipeWire instance.</p></optdesc> + </option> + + <option> + <p><opt>-p | --playback</opt></p> + <optdesc><p>Playback mode. Read data from the specified file, and play it back. If the tool is called under the name <file>pw-play</file> or <file>pw-midiplay</file> this is the default.</p></optdesc> + </option> + + <option> + <p><opt>-r | --record</opt></p> + <optdesc><p>Recording mode. Capture data and write it to the specified file. If the tool is called under the name <file>pw-record</file> or <file>pw-midirecord</file> this is the default.</p></optdesc> + </option> + + <option> + <p><opt>-m | --midi</opt></p> + <optdesc><p>Midi mode. FILE is a midi file. If the tool is called under the name <file>pw-midiplay</file> or <file>pw-midirecord</file> this is the default.</p></optdesc> + </option> + + </options> + + <section name="Authors"> + <p>The PipeWire Developers <@PACKAGE_BUGREPORT@>; PipeWire is available from <url href="@PACKAGE_URL@"/></p> + </section> + + <section name="See also"> + <p> + <manref name="pipewire" section="1"/>, + <manref name="pw-mon" section="1"/>, + </p> + </section> + +</manpage> |