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?

 Akzeptierte Antwort

Walter Roberson
Walter Roberson am 16 Okt. 2011

0 Stimmen

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 Kommentare

i Venky
i Venky am 16 Okt. 2011
When I played it separately using winamp I can hear my voice.
i Venky
i Venky am 16 Okt. 2011
Thanks Walter. That worked.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Audio Processing Algorithm Design finden Sie in Hilfe-Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by