getplayer
Create associated audioplayer
object
Description
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)
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.
playerObj= getplayer(recObj) play(playerObj)
Input Arguments
recorder
— Audio recorder object
audiorecorder
object
Audio recorder object, specified as an audiorecorder
object. Use the
audiorecorder
function to create the
object.
Version History
Introduced in R2006a
See Also
MATLAB 명령
다음 MATLAB 명령에 해당하는 링크를 클릭했습니다.
명령을 실행하려면 MATLAB 명령 창에 입력하십시오. 웹 브라우저는 MATLAB 명령을 지원하지 않습니다.
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list:
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)