comparison vamp/__init__.py @ 144:c64295f1cc33

Add get_parameters_of at module level
author Chris Cannam
date Tue, 21 Jul 2015 17:20:49 +0100
parents 58a2272d0046
children
comparison
equal deleted inserted replaced
143:79b050ca2fc2 144:c64295f1cc33
94 1. Basic info and lookup functions 94 1. Basic info and lookup functions
95 """""""""""""""""""""""""""""""""" 95 """"""""""""""""""""""""""""""""""
96 96
97 * ``vamp.list_plugins`` 97 * ``vamp.list_plugins``
98 * ``vamp.get_outputs_of`` 98 * ``vamp.get_outputs_of``
99 * ``vamp.get_parameters_of``
99 * ``vamp.get_category_of`` 100 * ``vamp.get_category_of``
100 101
101 These retrieve the installed plugin keys and get basic information 102 These retrieve the installed plugin keys and get basic information
102 about each plugin. (For more detailed information, load a plugin 103 about each plugin. (For more detailed information, load a plugin
103 and inspect it using the low-level interface described below.) 104 and inspect it using the low-level interface described below.)
160 161
161 ''' 162 '''
162 163
163 import vampyhost 164 import vampyhost
164 165
165 from vamp.load import list_plugins, get_outputs_of, get_category_of 166 from vamp.load import list_plugins, get_outputs_of, get_parameters_of, get_category_of
166 from vamp.process import process_audio, process_frames, process_audio_multiple_outputs, process_frames_multiple_outputs 167 from vamp.process import process_audio, process_frames, process_audio_multiple_outputs, process_frames_multiple_outputs
167 from vamp.collect import collect 168 from vamp.collect import collect
168 169