From 5cffc6dfd8c2d93b82d30894020501e73d951c1a Mon Sep 17 00:00:00 2001 From: yomguy Date: Sat, 19 Jun 2010 00:43:28 +0000 Subject: [PATCH] fix example args --- INSTALL | 2 +- INSTALL.html | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/INSTALL b/INSTALL index 1f980ba..08822e0 100644 --- a/INSTALL +++ b/INSTALL @@ -106,7 +106,7 @@ 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(output='image.png') >>> analyzer = timeside.analyzer.MaxLevel() >>> encoder = timeside.encoder.WavEncoder('output.wav') >>> (decoder | grapher | analyzer | encoder).run() diff --git a/INSTALL.html b/INSTALL.html index 4c87ad3..0e460a7 100644 --- a/INSTALL.html +++ b/INSTALL.html @@ -379,7 +379,7 @@ $ python setup.py install
 >>> decoder  =  timeside.decoder.FileDecoder('source.wav')
->>> grapher  =  timeside.grapher.Waveform('output=image.png')
+>>> grapher  =  timeside.grapher.Waveform(output='image.png')
 >>> analyzer =  timeside.analyzer.MaxLevel()
 >>> encoder  =  timeside.encoder.WavEncoder('output.wav')
 >>> (decoder | grapher | analyzer | encoder).run()
@@ -403,7 +403,7 @@ $ python setup.py install
 
-- 
2.39.5