From: Guillaume Pellerin Date: Fri, 24 May 2013 13:01:24 +0000 (+0200) Subject: doc: update paths X-Git-Tag: 0.5.0~109 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=0ce1f38ab2f3c0fdc30a81a1787a1c66185ef9dd;p=timeside.git doc: update paths --- diff --git a/doc/timeside_slides.html b/doc/timeside_slides.html index 7df8470..3204bed 100644 --- a/doc/timeside_slides.html +++ b/doc/timeside_slides.html @@ -92,10 +92,10 @@ import timeside.grapher import timeside.analyzer import timeside.encoder -decoder = timeside.decoder.FileDecoder('sweep.wav') +decoder = timeside.decoder.FileDecoder('tests/samples/sweep.wav') grapher = timeside.grapher.Waveform() analyzer = timeside.analyzer.Level() -encoder = timeside.encoder.Mp3Encoder('sweep.mp3') +encoder = timeside.encoder.Mp3Encoder('tests/samples/sweep.mp3')

then, the magic pipeline:


@@ -491,7 +491,7 @@ from new_analyzer import * # << here
 import timeside.decoder
 import timeside.analyzer
 
-decoder = timeside.decoder.FileDecoder('sweep.wav')
+decoder = timeside.decoder.FileDecoder('tests/samples/sweep.wav')
 analyzer = timeside.analyzer.NewAnalyzer()
 
 (decoder | analyzer).run()