Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to read data in from a wav file in 24 bit pcm format, and convert to float. I'm using Python 2.7.2.

The wave package reads the data in as a string, so what I've tried is:

import wave
import numpy as np
import array
import struct

f = wave.open('filename.wav')
# read in entire wav file
wdata = f.readframes(nFrames) 
f.close()

# unpack into signed integers and convert to float      
data = array.array('f')
for i in range(0,nFrames*3,3):
    data.append(float(struct.unpack('<i', '\x00'+ wdata[i:i+3])[0]))

# normalize sample values
data = np.array(data)
data = data / 0x800000

This is quite a bit faster than my earlier approaches, but still quite slow. Can anyone suggest a more efficient method?

share|improve this question
1  
Clearly you have NumPy. Why not use it the whole way through? – Ignacio Vazquez-Abrams Mar 19 '12 at 23:27

2 Answers

up vote 1 down vote accepted

This seems to be quite fast, it handles 24-bit values, and it does the normalization:

from scikits.audiolab import Sndfile
import numpy as np

f = Sndfile(fname, 'r')
data = np.array(f.read_frames(f.nframes), dtype=np.float64)
f.close()
return data
share|improve this answer
import sndhdr, wave, struct
if sndhdr.what(fname)[0] != 'wav'
  raise StandardError("file doesn't have wav header")
try:
  wav = wave.open(fname)
  params = (nchannels,sampwidth,rate,nframes,comp,compname) = wav.getparams()
  frames = wav.readframes(nframes*nchannels)
finally:
  wav.close()
out = struct.unpack_from ("%dh" % nframes*nchannels, frames)
share|improve this answer
1  
That converts two bytes of data into an integer, but the data is three bytes wide. FWIW, for wav pcm format with samplewidth > 2, sndhdr recognizes the official format while wave does not, so there is another error condition possible. – LMO Mar 20 '12 at 1:29
This seems pretty quick: – LMO Mar 20 '12 at 4:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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