Tell me more ×
Super User is a question and answer site for computer enthusiasts and power users. It's 100% free, no registration required.

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?

share|improve this question

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

Questions on Super User are expected to relate to computer software or computer hardware within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

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

share|improve this answer

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