Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

vamp-simple-host(1) [debian man page]

VAMP-SIMPLE-HOST(1)					      General Commands Manual					       VAMP-SIMPLE-HOST(1)

NAME
vamp-simple-host -- a simple Vamp plugin host SYNOPSIS
vamp-simple-host [-s] [pluginlibrary[.so]:plugin[:output]] [file] [-o outfile] vamp-simple-host [-s] [pluginlibrary[.so]:plugin] [file] [[outputno]] [-o outfile] DESCRIPTION
This manual page documents briefly the vamp-simple-host command. vamp-simple-host allows processing of a libsndfile-readable audio file using Vamp plugins, listing available plugins and the plugin search path. By default, vamp-simple-host loads plugin id plugin from pluginlibrary and runs it on the audio data in file, retrieving the named output, or output number outputno (the first output by default) and dumping it to standard output, or to outfile if the -o option is given. pluginlibrary should be a library name, not a file path; the standard Vamp library search path will be used to locate it. If a file path is supplied, the directory part(s) will be ignored. If the -s option is given, results will be labelled with the audio sample frame at which they occur. Otherwise, they will be labelled with time in seconds. OPTIONS
-l, --list List the plugin libraries and Vamp plugins in the library search path in a verbose human-readable format. --list-full List all data reported by all the Vamp plugins in the library search path in a very verbose human-readable format. --list-ids List the plugins in the search path in a terse machine-readable format, in the form vamp:soname:identifier. --list-outputs List the outputs for plugins in the search path in a machine-readable format, in the form vamp:soname:identifier:output. --list-by-category List the plugins as a plugin index by category, in a machine-readable format. The format may change in future releases. -p Print out the Vamp library search path. -s Label results with the audio sample frame at which they occur. Otherwise, they will be labelled with time in seconds. -o file Dump plugin output into file. -v Display version information only. ENVIRONMENT
VAMP_PATH A colon-separated list of directories to look for plugins. AUTHOR
This manual page was written by Szekelyi Szabolcs cc@mail.3d.hu for the Debian system (but may be used by others), because the original program does not have a manual page. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Gen- eral Public License, Version 2 any later version published by the Free Software Foundation. On Debian systems, the complete text of the GNU General Public License can be found in /usr/share/common-licenses/GPL. VAMP-SIMPLE-HOST(1)

Check Out this Related Man Page

RABBITMQ-PLUGINS(1)						 RabbitMQ Service					       RABBITMQ-PLUGINS(1)

NAME
rabbitmq-plugins - command line tool for managing RabbitMQ broker plugins SYNOPSIS
rabbitmq-plugins {command} [command options...] DESCRIPTION
rabbitmq-plugins is a command line tool for managing RabbitMQ broker plugins. It allows one to enable, disable and browse plugins. It must be run by a user with write permissions to the RabbitMQ configuration directory. Some plugins depend on others to work correctly. rabbitmq-plugins traverses these dependencies and enables all required plugins. Plugins listed on the rabbitmq-plugins command line are marked as explicitly enabled; dependent plugins are marked as implicitly enabled. Implicitly enabled plugins are automatically disabled again when they are no longer required. COMMANDS
list [-v] [-m] [-E] [-e] [pattern] -v Show all plugin details (verbose). -m Show only plugin names (minimal). -E Show only explicitly enabled plugins. -e Show only explicitly or implicitly enabled plugins. pattern Pattern to filter the plugin names by. Lists available plugins, their versions, dependencies and descriptions. Each plugin is prefixed with a status indicator - [ ] to indicate that the plugin is not enabled, [E] to indicate that it is explicitly enabled, and [e] to indicate that it is implicitly enabled. If the optional pattern is given, only plugins whose name matches pattern are shown. enable {plugin ...} plugin One or more plugins to enable. Enables the specified plugins and all their dependencies. disable {plugin ...} plugin One or more plugins to disable. Disables the specified plugins and all plugins that depend on them. EXAMPLES
rabbitmq-plugins list This command lists all the plugins available, on one line each. rabbitmq-plugins list -v This command lists all the plugins available. rabbitmq-plugins list -v management This command lists all the plugins available, but does not display plugins whose name does not contain "management". rabbitmq-plugins list -e rabbit This command lists all implicitly or explicitly enabled RabbitMQ plugins. rabbitmq-plugins enable rabbitmq_shovel rabbitmq_management This command enables the shovel and management plugins and all their dependencies. rabbitmq-plugins disable amqp_client This command disables amqp_client and all plugins that depend on it. AUTHOR
The RabbitMQ Team <info@rabbitmq.com> RabbitMQ Server 06/22/2012 RABBITMQ-PLUGINS(1)
Man Page