pause - Pause playback of audioplayer object or recording of
audiorecorder object - MATLAB ([original](https://www.mathworks.com/help/matlab/ref/audioplayer.pause.html)) ([raw](?raw))
Main Content
Pause playback of audioplayer
object or recording ofaudiorecorder
object
Syntax
Description
pause([audioObj](#mw%5Fd9773807-2709-4e1b-8e9b-1e1028e445b4))
pauses the playback of anaudioplayer
object or the recording of an audiorecorder
object.
Examples
Control Audio Recording and Playback
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)
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 theaudioplayer
object. The isplaying
function returns1
when playback is progress and 0
when the playback is not in progress.
Next, resume the recording and capture more audio in the audiorecorder
object.
To finalize the audio clip, after you have recorded more material, stop the recording.
Get the full audio clip from the audiorecorder
object and play it.
playerObj= getplayer(recObj) play(playerObj)
Input Arguments
audioObj
— Audio object
audioplayer
object | audiorecorder
object
Audio object, specified as an audioplayer
oraudiorecorder
object.
- If
audioObj
is anaudioplayer
object, then thepause
function pauses the audio playback that is in progress. - If
audioObj
is anaudiorecorder
object, then thepause
function pauses the audio recording that is in progress.
To create an audioplayer
object, use the audioplayer function.
To create an audiorecorder
object, use the audiorecorder function.
Version History
Introduced in R2006a