diff options
author | John Glover <john@87-198-53-226.ptr.magnet.ie> | 2010-11-11 11:00:08 +0000 |
---|---|---|
committer | John Glover <john@87-198-53-226.ptr.magnet.ie> | 2010-11-11 11:00:08 +0000 |
commit | 4591b4f5e4d0f3d128baffb77d32616b212d9c88 (patch) | |
tree | f85213b8deb10e4200a6523ac4474642f9b31488 | |
parent | c741f6ce7bb43b115d08e190b93e0ce090ae3475 (diff) | |
download | simpl-4591b4f5e4d0f3d128baffb77d32616b212d9c88.tar.gz simpl-4591b4f5e4d0f3d128baffb77d32616b212d9c88.tar.bz2 simpl-4591b4f5e4d0f3d128baffb77d32616b212d9c88.zip |
Added wrapper around reading in wav files, choosing the right floating point type and scaling values to between -1 and 1
-rw-r--r-- | __init__.py | 1 | ||||
-rw-r--r-- | audio.py | 25 |
2 files changed, 26 insertions, 0 deletions
diff --git a/__init__.py b/__init__.py index cd46097..182226e 100644 --- a/__init__.py +++ b/__init__.py @@ -20,6 +20,7 @@ from sndobj import SndObjPeakDetection, SndObjPartialTracking, SndObjSynthesis from sms import SMSPeakDetection, SMSPartialTracking, SMSSynthesis, SMSResidual from mq import MQPeakDetection, MQPartialTracking, MQSynthesis from plot import plot_peaks, plot_partials +from audio import read_wav import numpy diff --git a/audio.py b/audio.py new file mode 100644 index 0000000..f35210b --- /dev/null +++ b/audio.py @@ -0,0 +1,25 @@ +# Copyright (c) 2010 John Glover, National University of Ireland, Maynooth +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + +import numpy as np +from scipy.io.wavfile import read, write +import simpl + +def read_wav(file): + audio_data = read(file) + # return floating point values between -1 and 1 + return simpl.asarray(audio_data[1]) / 32768.0, audio_data[0] + |