Reading audio
3 ビュー (過去 30 日間)
古いコメントを表示
I recorded my voice and then converted that file to .wav format.
then I did the following
y=wavread('filename'); sound(y);
But I couldn't hear my voice. What is the problem?
0 件のコメント
採用された回答
Walter Roberson
2011 年 10 月 16 日
Difficult to say. You might not have a speaker or sound card connected, or its volume might not be up high enough or it might be muted.
Or perhaps you should be using
[y,fs] = waveread('filename');
sound(y,fs);
その他の回答 (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!