generating audio file through m.script
13 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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
0 Commenti
Risposta accettata
madhan ravi
il 27 Ago 2018
Modificato: madhan ravi
il 27 Ago 2018
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.');
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Code Generation and Deployment in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!