diff options
author | John Glover <j@johnglover.net> | 2012-08-11 15:45:44 +0100 |
---|---|---|
committer | John Glover <j@johnglover.net> | 2012-08-11 15:45:44 +0100 |
commit | 56f9ee6640baea33f2f2faf5aa844a55950429f9 (patch) | |
tree | 02a3e330777ec0a6eb6f32347154c09a482b8b11 | |
parent | 8eeac7f6777a9193b475d8046d43b2ddaa431c8c (diff) | |
download | simpl-56f9ee6640baea33f2f2faf5aa844a55950429f9.tar.gz simpl-56f9ee6640baea33f2f2faf5aa844a55950429f9.tar.bz2 simpl-56f9ee6640baea33f2f2faf5aa844a55950429f9.zip |
[examples] Tidy up resynth example.
-rw-r--r-- | simpl/examples/resynth.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/simpl/examples/resynth.py b/simpl/examples/resynth.py index 7288049..78f3f2d 100644 --- a/simpl/examples/resynth.py +++ b/simpl/examples/resynth.py @@ -1,13 +1,11 @@ import simpl import numpy as np -from scipy.io.wavfile import read, write +from scipy.io.wavfile import write input_file = '../../tests/audio/flute.wav' output_file = 'resynth.wav' -audio_data = read(input_file) -audio = simpl.asarray(audio_data[1]) / 32768.0 # values between -1 and 1 -sample_rate = audio_data[0] +audio = simpl.read_wav(input_file)[0] pd = simpl.SMSPeakDetection() pd.max_peaks = 40 |