diff options
author | B. Watson <yalhcru@gmail.com> | 2021-12-01 15:03:18 -0500 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2021-12-10 08:37:32 +0700 |
commit | 694adee41c14d9daa56c553d01513fc5b2b4b6fe (patch) | |
tree | 0c7143310251763e43c90df90c37d40adae7f8cb /audio/tap_plugins/reverbed.rst | |
parent | d96183adb70df76e574ad55f440eca20519a90b6 (diff) |
audio/tap_plugins: Updated for version 1.0.1.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'audio/tap_plugins/reverbed.rst')
-rw-r--r-- | audio/tap_plugins/reverbed.rst | 83 |
1 files changed, 83 insertions, 0 deletions
diff --git a/audio/tap_plugins/reverbed.rst b/audio/tap_plugins/reverbed.rst new file mode 100644 index 0000000000000..136da3e79a636 --- /dev/null +++ b/audio/tap_plugins/reverbed.rst @@ -0,0 +1,83 @@ +.. RST source for reverbed(1) man page. Convert with: +.. rst2man.py reverbed.rst > reverbed.1 +.. rst2man.py comes from the SBo development/docutils package. + +.. |version| replace:: r0 +.. |date| date:: + +======== +reverbed +======== + +------------------------------------------- +reverb (room acoustics simulation) for JACK +------------------------------------------- + +:Manual section: 1 +:Manual group: SlackBuilds.org +:Date: |date| +:Version: |version| + +SYNOPSIS +======== + +reverbed [**-a** | **-i** | **-o**] [**-c** *client_name*] + +DESCRIPTION +=========== + +**reverbed**, aka TAP Reverb Editor, is a standalone JACK application +that implements a reverb effect, with graphical interface to allow +changing parameters on the fly. + +**reverbed** creates two JACK inputs and two JACK outputs, which must +be connected to other JACK inputs/outputs in order to route audio +through the application. By default, these aren't connected to anything +at startup, but see the options below. + +OPTIONS +======= + +**-i** + Autoconnect JACK inputs to the first two hardware capture ports. + +**-o** + Autoconnect JACK outputs to the first two hardware playback ports. + +**-a** + Autoconnect both input and output ports (same as **-i** **-o**). + +**-c** *client_name* + Use **client_name** instead of the default *reverbED* when + connecting to JACK. You need this option if you want to run more + than one instance of the program at the same time, since JACK + client programs must have unique client names. + +FILES +===== + +**$HOME/.reverbed** + Presets are loaded from here at startup, if this file exists. + +**/etc/reverbed/reverbed.conf** + Presets are loaded from here if **$HOME/.reverbed** doesn't exist. + +COPYRIGHT +========= + +See the file /usr/doc/tap_plugins-1.0.1/COPYING for license information. + +AUTHORS +======= + +reverbed was written by Tom Szilagyi. + +This man page written for the SlackBuilds.org project +by B. Watson, and is licensed under the WTFPL. + +SEE ALSO +======== + +The user manual for reverbed: + +*/usr/doc/tap_plugins-1.0.1/tap-plugins-doc-20140526/reverbed/manual.html* |