From 781aa577be678e845d8c8ededa3b1aea5a6a4f6c Mon Sep 17 00:00:00 2001 From: John Glover Date: Thu, 30 Aug 2012 10:09:03 +0100 Subject: [examples] Rename synthesis examples. --- examples/harmonicsynthesis.py | 21 +++++++++++++++++++++ examples/residual.py | 17 ----------------- examples/residualsynthesis.py | 17 +++++++++++++++++ examples/resynth.py | 21 --------------------- 4 files changed, 38 insertions(+), 38 deletions(-) create mode 100644 examples/harmonicsynthesis.py delete mode 100644 examples/residual.py create mode 100644 examples/residualsynthesis.py delete mode 100644 examples/resynth.py diff --git a/examples/harmonicsynthesis.py b/examples/harmonicsynthesis.py new file mode 100644 index 0000000..99d6e39 --- /dev/null +++ b/examples/harmonicsynthesis.py @@ -0,0 +1,21 @@ +import sys +import numpy as np +import scipy.io.wavfile as wav +import simpl + +usage = 'Usage: python {0} '.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) diff --git a/examples/residual.py b/examples/residual.py deleted file mode 100644 index cd41dd4..0000000 --- a/examples/residual.py +++ /dev/null @@ -1,17 +0,0 @@ -import sys -import numpy as np -import scipy.io.wavfile as wav -import simpl - -usage = 'Usage: python {0} '.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/residualsynthesis.py b/examples/residualsynthesis.py new file mode 100644 index 0000000..cd41dd4 --- /dev/null +++ b/examples/residualsynthesis.py @@ -0,0 +1,17 @@ +import sys +import numpy as np +import scipy.io.wavfile as wav +import simpl + +usage = 'Usage: python {0} '.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 deleted file mode 100644 index 99d6e39..0000000 --- a/examples/resynth.py +++ /dev/null @@ -1,21 +0,0 @@ -import sys -import numpy as np -import scipy.io.wavfile as wav -import simpl - -usage = 'Usage: python {0} '.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) -- cgit v1.2.3