0

I get the following error, while I test a more than 100 mb audio file.

Traceback (most recent call last):
File "C:\Users\opensource\Desktop\pyAudioAnalysis-master\audioFeatureExtractio
n.py", line 542, in stFeatureExtraction signal = numpy.double(signal)MemoryError
vvvvv
  • 25,404
  • 19
  • 49
  • 81
malarvz
  • 9
  • 1
  • 3

1 Answers1

1

Assuming your data was int16 before, by upcasting to float64, you quadrupled the size of your array. This is likely more than the memory you had left, and it threw a MemoryError

Daniel F
  • 13,620
  • 2
  • 29
  • 55