diff options
author | John Glover <j@johnglover.net> | 2012-08-23 18:28:47 +0100 |
---|---|---|
committer | John Glover <j@johnglover.net> | 2012-08-23 18:28:47 +0100 |
commit | e11640ebce01e39b4a900c5c29acd401cda4f77f (patch) | |
tree | ab8ff95005243d31f29e3af2dd405b0bfbbed223 /examples | |
parent | 18ccab0e26a692073c2cd7d3c13d0c289b8f748f (diff) | |
download | simpl-e11640ebce01e39b4a900c5c29acd401cda4f77f.tar.gz simpl-e11640ebce01e39b4a900c5c29acd401cda4f77f.tar.bz2 simpl-e11640ebce01e39b4a900c5c29acd401cda4f77f.zip |
[examples] Move examples to top level. Update examples so file paths can be specified on the command line.
Diffstat (limited to 'examples')
-rw-r--r-- | examples/plotpartials.py | 19 | ||||
-rw-r--r-- | examples/plotpeaks.py | 22 | ||||
-rw-r--r-- | examples/residual.py | 17 | ||||
-rw-r--r-- | examples/resynth.py | 21 |
4 files changed, 79 insertions, 0 deletions
diff --git a/examples/plotpartials.py b/examples/plotpartials.py new file mode 100644 index 0000000..65017b0 --- /dev/null +++ b/examples/plotpartials.py @@ -0,0 +1,19 @@ +import sys +import matplotlib.pyplot as plt +import simpl + +usage = 'Usage: python {0} <wav file>'.format(__file__) +if len(sys.argv) != 2: + print usage + sys.exit(1) + +audio = simpl.read_wav(sys.argv[1])[0] + +pd = simpl.LorisPeakDetection() +pd.max_peaks = 30 +peaks = pd.find_peaks(audio) +pt = simpl.MQPartialTracking() +pt.max_partials = 30 +partials = pt.find_partials(peaks) +simpl.plot_partials(partials, show_peaks=False) +plt.show() diff --git a/examples/plotpeaks.py b/examples/plotpeaks.py new file mode 100644 index 0000000..ef2a1a4 --- /dev/null +++ b/examples/plotpeaks.py @@ -0,0 +1,22 @@ +import sys +import simpl +import matplotlib.pyplot as plt + +usage = 'Usage: python {0} <wav file>'.format(__file__) +if len(sys.argv) != 2: + print usage + sys.exit(1) + +audio = simpl.read_wav(sys.argv[1])[0] + +# take just a few frames +audio = audio[len(audio) / 2:(len(audio) / 2) + 4096] + +# peak detection using the SndObj library +pd = simpl.SndObjPeakDetection() +pd.max_peaks = 20 +peaks = pd.find_peaks(audio) + +# plot peaks using matplotlib +simpl.plot.plot_peaks(peaks) +plt.show() diff --git a/examples/residual.py b/examples/residual.py new file mode 100644 index 0000000..cd41dd4 --- /dev/null +++ b/examples/residual.py @@ -0,0 +1,17 @@ +import sys +import numpy as np +import scipy.io.wavfile as wav +import simpl + +usage = 'Usage: python {0} <input wav file> <output wav file>'.format(__file__) +if len(sys.argv) != 3: + print usage + sys.exit(1) + +audio = simpl.read_wav(sys.argv[1])[0] +output_file = sys.argv[2] + +r = simpl.SMSResidual() +audio_out = r.synth(audio) +audio_out = np.asarray(audio_out * 32768, np.int16) +wav.write(output_file, 44100, audio_out) diff --git a/examples/resynth.py b/examples/resynth.py new file mode 100644 index 0000000..99d6e39 --- /dev/null +++ b/examples/resynth.py @@ -0,0 +1,21 @@ +import sys +import numpy as np +import scipy.io.wavfile as wav +import simpl + +usage = 'Usage: python {0} <input wav file> <output wav file>'.format(__file__) +if len(sys.argv) != 3: + print usage + sys.exit(1) + +audio = simpl.read_wav(sys.argv[1])[0] +output_file = sys.argv[2] + +pd = simpl.LorisPeakDetection() +peaks = pd.find_peaks(audio) +pt = simpl.SMSPartialTracking() +partials = pt.find_partials(peaks) +synth = simpl.LorisSynthesis() +audio_out = synth.synth(partials) +audio_out = np.asarray(audio_out * 32768, np.int16) +wav.write(output_file, 44100, audio_out) |