This is documentation for an old release of SciPy (version 0.8.). Read this page in the documentation of the latest stable release (version 1.15.1).

scipy.io.wavfile.read

scipy.io.wavfile.read(file)

Return the sample rate (in samples/sec) and data from a WAV file

Parameters :

file : file

Input wav file.

Returns :

rate : int

Sample rate of wav file

data : numpy array

Data read from wav file

Notes

  • The file can be an open file or a filename.
  • The returned sample rate is a Python integer
  • The data is returned as a numpy array with a data-type determined from the file.

Next topic

scipy.io.wavfile.write

This Page