I need to analyze sound written in a .wav file. For that I need to transform this file into set of numbers (arrays, for example). I think I need to use wave-package. However, I do not know how exactly it works. For example I did the following:

import wave
w = wave.open('/usr/share/sounds/ekiga/voicemail.wav', 'r')
for i in range(w.getnframes()):
    frame = w.readframes(i)
    print frame

As a result of this code I expected to see sound-pressure as function of time. In contrast I see a lot of strange, mysterious symbols (which are not hexagonal numbers). Can anybody, pleas, help me with that?

link|improve this question

64% accept rate
feedback

4 Answers

up vote 5 down vote accepted

Per the sources, scipy.io.wavfile.read(somefile) returns a tuple of two items: the first is the sampling rate in samples per second, the second is a numpy array with all the data read from the file. Looks pretty easy to use!

link|improve this answer
You can combine this with command line conversion tools to open other formats. – endolith Dec 31 '10 at 2:31
1  
It seriously lacks the number of channels though. How are you supposed to work with audio without knowing the number of channels? – BastiBechtold Mar 2 '11 at 10:58
feedback

I did some research this evening and figured this out:

import wave, struct

waveFile = wave.open('sine.wav', 'r')

length = waveFile.getnframes()
for i in range(0,length):
    waveData = waveFile.readframes(1)
    data = struct.unpack("<h", waveData)
    print int(data[0])

Hopefully this snippet helps someone. Details: using the struct module, you can take the wave frames (which are in 2s complementary binary between -32768; 0x8000 and 32767; 0x7FFF) This reads a MONO, 16-BIT, WAVE file. I found this webpage quite useful in formulating this.

link|improve this answer
feedback

You can accomplish this using the scikits.audiolab module. It requires NumPy and SciPy to function, and also libsndfile.

Note, I was only able to get it to work on Ubunutu and not on OSX.

from scikits.audiolab import wavread

filename = "testfile.wav"

data, sample_frequency,encoding = wavread(filename)

Now you have the wav data

link|improve this answer
feedback

If you're going to perform transfers on the waveform data then perhaps you should use SciPy, specifically scipy.io.wavfile.

link|improve this answer
1  
OK. I just installed the SciPy but I cannot find any example of the usage of scipy.io.wavfile. – Roman Jan 13 '10 at 22:25
2  
Nothing like the interactive interpreter for figuring out how things work! Be ambitious! – Ignacio Vazquez-Abrams Jan 13 '10 at 22:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.