regarding .wav file
5 ビュー (過去 30 日間)
古いコメントを表示
Hey
Is there any way to convert a .wav file into .txt file using MATLAB? Please help.
Thanks!
0 件のコメント
採用された回答
Andreas Goser
2012 年 1 月 23 日
% 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')
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Audio and Video Data についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!