diff options
author | John Glover <j@johnglover.net> | 2012-10-03 12:32:54 +0200 |
---|---|---|
committer | John Glover <j@johnglover.net> | 2012-10-03 12:32:54 +0200 |
commit | 98d77b676e13eb362ce85146035bc2f5d098e4f6 (patch) | |
tree | 76ea3271569e64b05c8519f3c48d6825cb35411d /examples/harmonicsynthesis.py | |
parent | cbce075cd66355ff0709bf7fd94a9553946e38c0 (diff) | |
download | simpl-98d77b676e13eb362ce85146035bc2f5d098e4f6.tar.gz simpl-98d77b676e13eb362ce85146035bc2f5d098e4f6.tar.bz2 simpl-98d77b676e13eb362ce85146035bc2f5d098e4f6.zip |
[examples] Bug fix: Use original sampling rate
when writing synthesised audio files.
Diffstat (limited to 'examples/harmonicsynthesis.py')
-rw-r--r-- | examples/harmonicsynthesis.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/harmonicsynthesis.py b/examples/harmonicsynthesis.py index 99d6e39..401025d 100644 --- a/examples/harmonicsynthesis.py +++ b/examples/harmonicsynthesis.py @@ -8,7 +8,7 @@ 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] pd = simpl.LorisPeakDetection() @@ -18,4 +18,4 @@ 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) +wav.write(output_file, sampling_rate, audio_out) |