Initiate a recording session, pause the recorder, and then continue the session to finish recording a full audio clip.
Create an audio recording object and start recording using a microphone on your system.
recObj = audiorecorder;
record(recObj);
disp('Recording in progress now ...')
Recording in progress now ...
Pause the recording and check the status of the audiorecorder object. The isrecording function returns 1 when recording is progress and 0 when the recording is not in progress.
pause(recObj);
isrecording(recObj)
ans =
logical
0
Listen to the audio that has been recorded so far.
playerObj= getplayer(recObj);
play(playerObj);
Before proceeding with the recording session, check the status of the
audioplayer object. The isplaying function returns
1 when playback is progress and 0 when the playback
is not in progress.
isplaying(playerObj)
ans =
logical
0
Next, resume the recording and capture more audio in the audiorecorder object.
resume(recObj)
To finalize the audio clip, after you have recorded more material, stop the recording.
stop(recObj)
Get the full audio clip from the audiorecorder object and play it.
You clicked a link that corresponds to this MATLAB command:
Run the command by entering it in the MATLAB Command Window.
Web browsers do not support MATLAB commands.
Sélectionner un site web
Choisissez un site web pour accéder au contenu traduit dans votre langue (lorsqu'il est disponible) et voir les événements et les offres locales. D’après votre position, nous vous recommandons de sélectionner la région suivante : .
Vous pouvez également sélectionner un site web dans la liste suivante :
Comment optimiser les performances du site
Pour optimiser les performances du site, sélectionnez la région Chine (en chinois ou en anglais). Les sites de MathWorks pour les autres pays ne sont pas optimisés pour les visites provenant de votre région.