Mercurial > hg > vampy-host
comparison vamp/__init__.py @ 82:a11b57e9fb0b
naming: module methods snake_case
author | Chris Cannam |
---|---|
date | Wed, 21 Jan 2015 12:43:50 +0000 |
parents | 650f0697812f |
children | 3e5791890b65 |
comparison
equal
deleted
inserted
replaced
81:0a2f2e7803ea | 82:a11b57e9fb0b |
---|---|
1 '''A high-level interface to the vampyhost extension module, for quickly and easily running Vamp audio analysis plugins on audio files and buffers.''' | 1 '''A high-level interface to the vampyhost extension module, for quickly and easily running Vamp audio analysis plugins on audio files and buffers.''' |
2 | 2 |
3 import vampyhost | 3 import vampyhost |
4 | 4 |
5 from load import list_plugins, loadAndConfigureFor | 5 from load import list_plugins, load_and_configure |
6 from frames import framesFromArray | 6 from frames import frames_from_array |
7 from process import process, processMultipleOutputs | 7 from process import process, process_multiple_outputs |
8 from collect import collect | 8 from collect import collect |