diff options
author | John Glover <j@johnglover.net> | 2012-10-03 09:54:37 +0200 |
---|---|---|
committer | John Glover <j@johnglover.net> | 2012-10-03 09:54:37 +0200 |
commit | f3052e2b09449745843c5858e9524a87e73663de (patch) | |
tree | 1b2c4d61160c917e2d839e1a5b0f4c11833a98f1 | |
parent | db83824d26bebdf0983f18a6dc6c884aa27ca422 (diff) | |
download | simpl-f3052e2b09449745843c5858e9524a87e73663de.tar.gz simpl-f3052e2b09449745843c5858e9524a87e73663de.tar.bz2 simpl-f3052e2b09449745843c5858e9524a87e73663de.zip |
[audio] Update read_wav function: just return the
first channel from multi-channel audio files.
-rw-r--r-- | simpl/audio.py | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/simpl/audio.py b/simpl/audio.py index d86c5ff..d79f53d 100644 --- a/simpl/audio.py +++ b/simpl/audio.py @@ -5,5 +5,10 @@ import simpl def read_wav(file): 'return floating point values between -1 and 1' - audio = wav.read(file) - return np.asarray(audio[1], dtype=simpl.dtype) / 32768.0, audio[0] + sampling_rate, audio = wav.read(file) + + # if wav file has more than 1 channel, just take the first one + if audio.ndim > 1: + audio = audio.T[0] + + return np.asarray(audio, dtype=simpl.dtype) / 32768.0, sampling_rate |