From 98d77b676e13eb362ce85146035bc2f5d098e4f6 Mon Sep 17 00:00:00 2001 From: John Glover Date: Wed, 3 Oct 2012 12:32:54 +0200 Subject: [examples] Bug fix: Use original sampling rate when writing synthesised audio files. --- examples/residualsynthesis.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'examples/residualsynthesis.py') diff --git a/examples/residualsynthesis.py b/examples/residualsynthesis.py index cd41dd4..f3559c8 100644 --- a/examples/residualsynthesis.py +++ b/examples/residualsynthesis.py @@ -8,10 +8,10 @@ if len(sys.argv) != 3: print usage sys.exit(1) -audio = simpl.read_wav(sys.argv[1])[0] +audio, sampling_rate = simpl.read_wav(sys.argv[1]) 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) +wav.write(output_file, sampling_rate, audio_out) -- cgit v1.2.3