From e49f8e5bc5a53aa45dcd87965febdecb4c842056 Mon Sep 17 00:00:00 2001 From: yomguy Date: Sat, 9 Oct 2010 14:03:47 +0000 Subject: [PATCH] update examples related to the new grapher API --- INSTALL | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/INSTALL b/INSTALL index 08822e0..e3af4ad 100644 --- a/INSTALL +++ b/INSTALL @@ -106,11 +106,11 @@ For example, a normalization and a waveform, from a python shell:: >>> import timeside >>> decoder = timeside.decoder.FileDecoder('source.wav') ->>> grapher = timeside.grapher.Waveform(output='image.png') +>>> grapher = timeside.grapher.Waveform() >>> analyzer = timeside.analyzer.MaxLevel() >>> encoder = timeside.encoder.WavEncoder('output.wav') >>> (decoder | grapher | analyzer | encoder).run() ->>> grapher.render() +>>> grapher.render(output='image.png') >>> print 'Level:', analyzer.result() -- 2.39.5