I'm typing the following in MATLAB:

aaa = wavread('test.wav');
soundsc(aaa);

I get the following error:

>> soundsc(aaa)
??? Error using ==> playsnd at 18
The requested audio format is not supported

Error in ==> sound at 58
playsnd(y,fs,bits);

Error in ==> soundsc at 48
sound(varargin{:})

Anyone else dealt with this issue before?

link|improve this question
feedback

closed as off topic by DragonLord, Sathya Sep 20 '11 at 15:44

Questions on Super User are expected to generally relate to computer software or computer hardware, within the scope defined in the faq.

1 Answer

I found this: http://blog.carpente.es/implementacion-del-wavplay-del-matlab-de-windows-para-linux/

A blog in Spanish, but even so it is easy to understand the function what is doing

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.