Ich versuche, eine *.wav-Datei mit Scipy zu lesen. Ich tue das Folgende:
import scipy
x = scipy.io.wavfile.read('/usr/share/sounds/purple/receive.wav')
Als Ergebnis dieses Codes erhalte ich:
Traceback (most recent call last):
File "test3.py", line 2, in <module>
x = scipy.io.wavfile.read('/usr/share/sounds/purple/receive.wav')
AttributeError: 'module' object has no attribute 'io'
Weiß jemand, was hier falsch ist? Ich danke Ihnen im Voraus.