- 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.
8 views (last 30 days)
Show older comments
What does this error means?
Cannot read PCM file formats with more than 32 bits per sample.
0 Comments
Answers (2)
Daniel Shub
on 13 May 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 Comments
Daniel Shub
on 13 May 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
on 13 May 2012
2 Comments
Walter Roberson
on 13 May 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
on 13 May 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.
See Also
Categories
Find more on Speech Recognition in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!