annotate vamp/__init__.py @ 107:56d0e5cd4ac8
Rearrange Makefile so as not to run tests by default ("make all" still does though), so as to avoid problems with nose naming/versions
author |
Chris Cannam |
date |
Wed, 17 Jun 2015 09:14:51 +0100 |
parents |
72be91c3cb3d |
children |
9343eee50605 |
rev |
line source |
Chris@56
|
1 '''A high-level interface to the vampyhost extension module, for quickly and easily running Vamp audio analysis plugins on audio files and buffers.'''
|
Chris@56
|
2
|
Chris@75
|
3 import vampyhost
|
Chris@68
|
4
|
Chris@98
|
5 from load import list_plugins, get_outputs_of, get_category_of
|
Chris@100
|
6 from process import process, process_frames, process_multiple_outputs, process_frames_multiple_outputs
|
Chris@75
|
7 from collect import collect
|
Chris@95
|
8
|