From: yomguy Date: Sat, 19 Jun 2010 00:43:28 +0000 (+0000) Subject: fix example args X-Git-Tag: 0.3.2~121 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=5cffc6dfd8c2d93b82d30894020501e73d951c1a;p=timeside.git fix example args --- 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