summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Glover <glover.john@gmail.com>2011-06-24 18:57:19 +0100
committerJohn Glover <glover.john@gmail.com>2011-06-24 18:57:19 +0100
commit09ab7dcd1eb1bae2fce7ed2db396ca9dbb1274e9 (patch)
tree53685aed238245084f88e367193e0a55397fa21f
parentcd092a6c09e5ecfd8f5274176ad4613fe95ae6f3 (diff)
downloadsimpl-09ab7dcd1eb1bae2fce7ed2db396ca9dbb1274e9.tar.gz
simpl-09ab7dcd1eb1bae2fce7ed2db396ca9dbb1274e9.tar.bz2
simpl-09ab7dcd1eb1bae2fce7ed2db396ca9dbb1274e9.zip
Update examples to find audio in moved test folder
-rw-r--r--simpl/examples/plotpartials.py3
-rw-r--r--simpl/examples/plotpeaks.py3
-rw-r--r--simpl/examples/residual.py2
-rw-r--r--simpl/examples/resynth.py3
-rw-r--r--simpl/examples/timestretch.py3
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)
-