- how you created the file
- how you read the file
- what you are doing with the file once loaded
Cannot read PCM file formats with more than 32 bits per sample.
10 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
What does this error means?
Cannot read PCM file formats with more than 32 bits per sample.
0 Commenti
Risposte (2)
Daniel Shub
il 13 Mag 2012
I am assuming this comes from trying to use the WAVREAD function. I think the error is pretty straight forward. The PCM file (aka WAV file) has a resolution of greater than 32 bits per samples and MATLAB doesn't know what to do with it.
If you want a suggestion of how to deal with the error, you need to provide more information. Ideally you should edit your question to include
3 Commenti
Daniel Shub
il 13 Mag 2012
The error most likely comes from
d2=wavread(filename);
It seems like the variable "filename" will be something like word1m1.wav
How did you create these WAV files? Presumably, the format of these WAV files is greater than 32 bits per sample.
marina
il 13 Mag 2012
2 Commenti
Walter Roberson
il 13 Mag 2012
Try changing the order you enter the words in. Does it always happen after 3 words, or does it happen with particular files?
Try using wavinfo() to look at the information about the files.
Generally speaking when I see random errors like that cropping up, I look to be sure that all of the commands for reading the files are correct; random strange errors can show up if a string is used in a place that MATLAB is expecting a numeric array.
Daniel Shub
il 13 Mag 2012
This is not an answer, but either a comment to my previous answer or additional information for the question. Please put it in the appropriate place (use the edit "button" to edit your question, or the "comment on this answer" link to add a comment. This information says nothing about the three questions I asked.
Vedere anche
Categorie
Scopri di più su Speech Recognition in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!