generating audio file through m.script

hi, i need an audiofile to generate any speech for particular frequency and for particular time. can u suggest me how to generate audiofile using m-file.... ?
Thanks Deepa.R

 Akzeptierte Antwort

madhan ravi
madhan ravi am 27 Aug. 2018
Bearbeitet: madhan ravi am 27 Aug. 2018

0 Stimmen

Try the below code:
recorder = audiorecorder;
disp('Start speaking.')
recorder.record(100); %100 refers to the seconds
while recorder.isrecording()
pause(0.1);
plot(recorder.getaudiodata());
drawnow();
end
disp('End of Recording.');

2 Kommentare

Deepa
Deepa am 27 Aug. 2018
what is the variable here to store the captured speech ?
Deepa
Deepa am 28 Aug. 2018
how to store the speech here ?

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Code Generation and Deployment finden Sie in Hilfe-Center und File Exchange

Gefragt:

am 27 Aug. 2018

Kommentiert:

am 28 Aug. 2018

Community Treasure Hunt

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

Start Hunting!

Translated by