Reading audio

3 次查看(过去 30 天)
i Venky
i Venky 2011-10-16
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?

采纳的回答

Walter Roberson
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);
  2 个评论
i Venky
i Venky 2011-10-16
When I played it separately using winamp I can hear my voice.
i Venky
i Venky 2011-10-16
Thanks Walter. That worked.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Audio Processing Algorithm Design 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by