how to see live plot of my voice ?

8 visualizaciones (últimos 30 días)
tomer polsky
tomer polsky el 26 de Jul. de 2018
Comentada: tomer polsky el 27 de Jul. de 2018
hello I want to see live plot of my voice but i cant figure how to do it , I wachted real time audio topics but still cant figure how to do it .
this is my code :
clc;
clear all;
close all;
recorder = audiorecorder( 96000 ,24,1)
disp('Start speaking.')
recordblocking(recorder, 3);
disp('End of Recording.');
a=play(recorder)
myRecording = getaudiodata(recorder);
subplot(2,1,1)
title('regular plot')
plot(myRecording);
subplot(2,1,2)
title('FFT plot')
plot(1:1:288000,fft(myRecording));
but this code is not 'real time ' meaning that in this code i record my voice and then can only see the plot of my voice .

Respuesta aceptada

Jason Whitfield
Jason Whitfield el 26 de Jul. de 2018
As the name suggests, the recordblocking method will block the execution of the rest of the script until the recording finishes. If you don't want it to block, you can use the record method instead. Here is an example script that will plot 10 seconds of audio data in real time.
recorder = audiorecorder(96000, 24, 1);
disp('Start speaking.')
recorder.record(10);
while recorder.isrecording()
pause(0.1);
plot(recorder.getaudiodata());
drawnow();
end
disp('End of Recording.');
  1 comentario
tomer polsky
tomer polsky el 27 de Jul. de 2018
oh thank you very much my friend, now it seems logical to me .

Iniciar sesión para comentar.

Más respuestas (0)

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by