summaryrefslogtreecommitdiff
path: root/examples/plotpartials.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/plotpartials.py')
-rw-r--r--examples/plotpartials.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/examples/plotpartials.py b/examples/plotpartials.py
index 64974d5..c16fc1b 100644
--- a/examples/plotpartials.py
+++ b/examples/plotpartials.py
@@ -16,12 +16,11 @@
import simpl
import simpl.plot
-import numpy as np
from scipy.io.wavfile import read
-input_file = '../test/audio/flute.wav'
+input_file = '../tests/audio/flute.wav'
audio_in_data = read(input_file)
-audio_in = np.asarray(audio_in_data[1], np.float32) / 32768.0 # values between -1 and 1
+audio_in = simpl.asarray(audio_in_data[1]) / 32768.0 # values between -1 and 1
sample_rate = audio_in_data[0]
# take just the first few frames