From c1895d3477a3a65e76f397c82d60cc56279f5a4e Mon Sep 17 00:00:00 2001 From: Thomas Fillon Date: Mon, 12 Jan 2015 15:44:38 +0100 Subject: [PATCH] Update README --- README.rst | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index a6af65c..95d1054 100644 --- a/README.rst +++ b/README.rst @@ -60,15 +60,15 @@ Dive in To list all available plugins:: - import timeside + import timeside.core timeside.core.list_processors() Define some processors:: from timeside.core import get_processor decoder = get_processor('file_decoder')('sweep.wav') - grapher = get_processor('waveform_simple') - analyzer = get_processor('level') + grapher = get_processor('waveform_simple')() + analyzer = get_processor('level')() encoder = get_processor('vorbis_encoder')('sweep.ogg') Then run the *magic* pipeline:: @@ -91,6 +91,16 @@ For more extensive examples, please see the `full documentation `_ enabling external plugins to be automatically plug into TimeSide (see for example `timeside-diadems `_). + - To properly manage the namespace packages structure, the TimeSide main module is now `timeside.core` and code should now be initialized with `import timeside.core`. + * Move all analyzers developped by the partners of the Diadems project to a new repository: `timeside-diadems `_ + + 0.6.1 * Fix various minor bugs -- 2.39.5