annotate vamp/__init__.py @ 112:9343eee50605

Update to Python 3. Currently crashes during tests (and also, two tests are now failing, even with Py2).
author Chris Cannam
date Wed, 17 Jun 2015 12:35:41 +0100
parents 72be91c3cb3d
children 2370b942cd32
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@112 5 from vamp.load import list_plugins, get_outputs_of, get_category_of
Chris@112 6 from vamp.process import process_audio, process_frames, process_multiple_outputs, process_frames_multiple_outputs
Chris@112 7 from vamp.collect import collect
Chris@95 8