From e11640ebce01e39b4a900c5c29acd401cda4f77f Mon Sep 17 00:00:00 2001 From: John Glover Date: Thu, 23 Aug 2012 18:28:47 +0100 Subject: [examples] Move examples to top level. Update examples so file paths can be specified on the command line. --- examples/residual.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 examples/residual.py (limited to 'examples/residual.py') 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} '.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) -- cgit v1.2.3