Sto provando a leggere un file wav utilizzando scipy. Faccio questo:scipy.io.wavfile restituisce l'errore "WavFileWarning: chunk not understand"
from scipy.io import wavfile
filename = "myWavFile.wav"
print "Processing " + filename
samples = wavfile.read(filename)
E ottengo questo brutto errore:
/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages/scipy/io/wavfile.py:121: WavFileWarning: chunk not understood
warnings.warn("chunk not understood", WavFileWarning)
Traceback (most recent call last):
File "fingerFooler.py", line 15, in <module>
samples = wavfile.read(filename)
File "/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages/scipy/io/wavfile.py", line 127, in read
size = struct.unpack(fmt, data)[0]
struct.error: unpack requires a string argument of length 4
sto usando Python 2.6.6, 1.6.2 NumPy, e SciPy 0.11.0
Here's un file wav che causa il problema.
Qualche idea? Cosa c'è che non va qui?
try 'samples = wavfile.read (aperto (nome file, 'r'))' – Skyler
Provato, ha ancora lo stesso errore ... – Eric
sei sicuro che il tuo file .wav è standard? è non compresso o no? – Skyler