diff options
-rw-r--r-- | simpl/examples/plotpartials.py | 3 | ||||
-rw-r--r-- | simpl/examples/plotpeaks.py | 3 | ||||
-rw-r--r-- | simpl/examples/residual.py | 2 | ||||
-rw-r--r-- | simpl/examples/resynth.py | 3 | ||||
-rw-r--r-- | simpl/examples/timestretch.py | 3 |
5 files changed, 5 insertions, 9 deletions
diff --git a/simpl/examples/plotpartials.py b/simpl/examples/plotpartials.py index ef6d7ef..279e576 100644 --- a/simpl/examples/plotpartials.py +++ b/simpl/examples/plotpartials.py @@ -18,7 +18,7 @@ import simpl import matplotlib.pyplot as plt from scipy.io.wavfile import read -input_file = '../tests/audio/flute.wav' +input_file = '../../tests/audio/flute.wav' audio_in_data = read(input_file) audio_in = simpl.asarray(audio_in_data[1]) / 32768.0 # values between -1 and 1 sample_rate = audio_in_data[0] @@ -34,4 +34,3 @@ pt.max_partials = 60 partials = pt.find_partials(peaks) simpl.plot.plot_partials(partials) plt.show() - diff --git a/simpl/examples/plotpeaks.py b/simpl/examples/plotpeaks.py index e8de386..d74dc1a 100644 --- a/simpl/examples/plotpeaks.py +++ b/simpl/examples/plotpeaks.py @@ -18,7 +18,7 @@ import simpl import matplotlib.pyplot as plt from scipy.io.wavfile import read -input_file = '../tests/audio/flute.wav' +input_file = '../../tests/audio/flute.wav' audio_data = read(input_file) audio = simpl.asarray(audio_data[1]) / 32768.0 # values between -1 and 1 sample_rate = audio_data[0] @@ -32,4 +32,3 @@ peaks = pd.find_peaks(audio) # plot peaks using matplotlib simpl.plot.plot_peaks(peaks) plt.show() - diff --git a/simpl/examples/residual.py b/simpl/examples/residual.py index 305bd3e..8956b85 100644 --- a/simpl/examples/residual.py +++ b/simpl/examples/residual.py @@ -18,7 +18,7 @@ import simpl import numpy as np from scipy.io.wavfile import read, write -input_file = '../tests/audio/flute.wav' +input_file = '../../tests/audio/flute.wav' output_file = 'residual.wav' audio_data = read(input_file) diff --git a/simpl/examples/resynth.py b/simpl/examples/resynth.py index 20c4684..b203e9c 100644 --- a/simpl/examples/resynth.py +++ b/simpl/examples/resynth.py @@ -18,7 +18,7 @@ import simpl import numpy as np from scipy.io.wavfile import read, write -input_file = '../tests/audio/flute.wav' +input_file = '../../tests/audio/flute.wav' output_file = 'resynth.wav' audio_data = read(input_file) @@ -36,4 +36,3 @@ synth = simpl.SndObjSynthesis() audio_out = synth.synth(partials) audio_out = np.asarray(audio_out * 32768, np.int16) write(output_file, 44100, audio_out) - diff --git a/simpl/examples/timestretch.py b/simpl/examples/timestretch.py index af9cfb4..c45fb5e 100644 --- a/simpl/examples/timestretch.py +++ b/simpl/examples/timestretch.py @@ -19,7 +19,7 @@ from simpl.fx import time_stretch from scipy.io.wavfile import read, write import numpy as np -input_file = '../tests/audio/flute.wav' +input_file = '../../tests/audio/flute.wav' output_file = 'flute_2x.wav' time_stretch_factor = 2 @@ -40,4 +40,3 @@ audio_out = sndobj_synth.synth(partials) audio_out = np.asarray(audio_out * 32768, np.int16) print "Writing output to", output_file write(output_file, 44100, audio_out) - |