regarding .wav file

6 views (last 30 days)
Aparna
Aparna on 23 Jan 2012
Hey
Is there any way to convert a .wav file into .txt file using MATLAB? Please help.
Thanks!

Accepted Answer

Andreas Goser
Andreas Goser on 23 Jan 2012
% Create WAV file in current folder for this test
load handel.mat
hfile='handel.wav';
wavwrite(y, Fs, hfile)
clear y Fs
% Read the data back into MATLAB
[y, Fs, nbits, readinfo] = wavread(hfile);
% Save as ASCII text file
save('handel.txt', 'y', '-ASCII')
  5 Comments
Aparna
Aparna on 24 Jan 2012
Ok thank you very much for your help! :)
Aparna
Aparna on 13 Mar 2012
I am sorry to disturb you on this query again but i am not very clear about what y is in the wavwrite step..
Can you kindly let me know about this?
Thank you!

Sign in to comment.

More Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!