What does the data returned by scipy.io.wavfile.read mean?
问题 The documentation of scipy.io.wavfile.read says that it returns sample rate and data. But what does data actually mean here in case of .wav files? Can anyone let me know in layman terms how that data is prepared? PS. I read somewhere that it means amplitude? Is what I read correct? If yes, how is that amplitude calculated and returned by scipy.io.wavfile.read ? 回答1: scipy.io.wavfile.read is a convenience wrapper to decompose the .wav file into a header and the data contained in the file. From