How can I interrupt the playback of an audio file that has been initiated using WAVPLAY in MATLAB 7.9 (R2009b)?

12 ビュー (過去 30 日間)
I have created a GUI application which starts the playback of an audio file using WAVPLAY. I would like to insert a new button in the GUI that allows the user to pause or stop the audio playback.

採用された回答

MathWorks Support Team
MathWorks Support Team 2009 年 11 月 11 日
There is no function in MATLAB that can pause or stop audio playback once initiated by WAVPLAY. Instead of using WAVPLAY, an alternative is to create an AUDIOPLAYER object. This type of object has methods which allow pausing, resuming and stopping the audio playback. For example:
player = audioplayer(Y, Fs)
% start the playback
play(player);
% pause the playback
pause(player);
% resume the playback
resume(player)
% stop the playback
stop(player)
For further details refer to the AUDIOPLAYER documentation.
doc audioplayer
  1 件のコメント
Joe V
Joe V 2019 年 6 月 27 日
See Li Kang's answer below -- the "clear sound" command works, at least for some cases.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeAudio and Video Data についてさらに検索

製品


リリース

R2009b

Community Treasure Hunt

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

Start Hunting!

Translated by