Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

calfjackhost(1) [debian man page]

calfjackhost(1) 					      General Commands Manual						   calfjackhost(1)

NAME
calfjackhost - JACK wrapper for Calf plugins SYNOPSIS
calfjackhost [options] plugin[:preset] [!] ... DESCRIPTION
Calf JACK host application provides a way to use Calf plugins directly, without need for any external host application. It also offers best GUI functionality (using GTK+ 2 widget set), as there is no restrictive plugin standard getting in a way between GUI and audio processing code. OPTIONS
--client name sets JACK client name (the name calfjackhost uses when registering in JACK) --input name name prefix for audio inputs --output name name prefix for audio outputs --midi name name prefix for MIDI inputs --connect-midi client:port automatically connect all MIDI ports to client:port --connect-midi !n automatically connect all MIDI ports to system:midi_capture_n --version prints a version string (calf some.version.number) --help prints a help text An exclamation mark (!) in place of plugin name means automatic connection. If "!" is placed before the first plugin name, the first plugin has its inputs connected to system:capture_1 and system:capture_2. If it's placed between plugin names, those plugins are connected together (first plugin's output is connected to second plugin's input). If it's placed after last plugin name, that plugin's audio outputs are connected to system:playback_1 and system:playback_2 (first output pair). Plugin names (should be self-explanatory): * flanger * filter * reverb * vintagedelay * monosynth * multichorus (chorus effect with multiple voices) * compressor (Thor Harald Johansen's dynamic compressor) * organ (polyphonic synthesizer emulating tonewheel or solid state organs) * rotaryspeaker (not a faithful emulation, not even close) BUGS
Please send bug reports to <wdev@foltman.com>. EXAMPLES
To start monosynth with automatic connection to first system audio output, and no automatic MIDI connection, use: calfjackhost monosynth ! (! means "connect", last "!" means "connect to output") Other examples: calfjackhost monosynth ! vintagedelay ! flanger ! -M 2 (runs monosynth into vintagedelay and vintagedelay into flanger, then to output; connects monosynth's MIDI input to JACK's system:midi_cap- ture_2) calfjackhost "monosynth:Fat Bass" (runs monosynth with a Fat Bass preset into monosynth, does not autoconnect) calfjackhost ! reverb ! (takes signal from system:capture_1 and _2, puts it through reverb, and then sends to system:playback_1 and _2) SEE ALSO
calf(7) 2008-01-29 calfjackhost(1)

Check Out this Related Man Page

jack-dssi-host(1)					      General Commands Manual						 jack-dssi-host(1)

NAME
jack-dssi-host - a simple JACK host for DSSI plugins SYNOPSIS
jack-dssi-host [-v] [-a] [-n] [-p <projdir>] [-c <cname>] [-<i>] <libname>[:<label>] [...] DESCRIPTION
jack-dssi-host is a simple DSSI host that listens for MIDI events on an ALSA sequencer port, delivers them to DSSI synth plugins, and out- puts the resulting audio via JACK. jack-dssi-host can host up to 16 instances of DSSI synth plugins, each of which is sequentially assigned a MIDI channel from 1 to 16. Plugin outputs (if `-a' is not specified) are connected sequentially to the available JACK physical output ports, wrapping back to the first JACK port whenever the available ports are exhausted. Plugin user interfaces (UIs) are started for each instance (if '-n' is not specified.) jack-dssi-host will exit when the last plugin UI has exited. As a special case, if jack-dssi-host is started with a name other than `jack-dssi-host', and if that name (plus an `.so' suffix) can be found in the DSSI_PATH search path (see ENVIRONMENT below) as a valid plugin shared library, and if no further command line arguments are given, then the first plugin in that library will be loaded automatically. This provides a convenient way to run a plugin by simply sym- linking the plugin's basename to jack-dssi-host. OPTIONS
-v Verbose mode. -a Disable automatic connection of outputs to JACK physical outputs. -n Disable automatic starting of plugin user interfaces (UIs). -p <projdir> The project directory to pass to both plugin and UI. -c <cname> The client name to use for ALSA and JACK. -<i> Number of instances of the following plugin to run (max 16 total, default 1). <libname> Name of the DSSI plugin shared library (.so) to load. This may be an absolute path to the library file, or just the filename itself, in which case the DSSI search path is searched (see ENVIRONMENT below). <label> the label of the plugin to load from the library. If this is omitted, the first plugin in the library is used. [...] Optionally more instance counts, plugins and labels. EXAMPLE
jack-dssi-host -2 lib1.so -1 lib2.so:fuzzy Runs two instances of the first plugin found in lib1.so, assigned to MIDI channels 1 and 2 and connected to the first available JACK out- puts, and one instance of the "fuzzy" plugin in lib2.so on MIDI channel 3 and connected to the next available JACK output. ENVIRONMENT
jack-dssi-host will search for plugin shared libraries in the directories specified by the environment variable DSSI_PATH, which is a colon-separated list of directories. If DSSI_PATH is not set, a default search path of /usr/lib/dssi, /usr/local/lib/dssi, and (assuming the environment variable HOME is set,) $HOME/.dssi is used. AUTHOR
This manual page was originally created by Mark Hymers from the help text of the application, for the Debian project (but may be freely used by others). September 18th, 2010 jack-dssi-host(1)
Man Page