plz help me with this error
4 views (last 30 days)
Show older comments
for index = 1 : length(filelist)
fprintf('Processing %s\n', filelist(index).name);
% Read the sample rate Fs and store it.
[y, Fs] = wavread(filelist(index).name)
Error messages: Error using wavread Invalid Wave File. Reason: Data compression format (CCITT mu-law) is not supported.
Error in chikkuspeech (line 10) [y, Fs] = wavread(filelist(index).name)
>>
0 Comments
Answers (1)
Azzi Abdelmalek
on 9 Jan 2014
Edited: Azzi Abdelmalek
on 9 Jan 2014
The error message indicates that the file you are trying to read is not supported by the function wavread
3 Comments
See Also
Categories
Find more on Audio and Video Data in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!