Clear Filters
Clear Filters

Sound in GUI

2 views (last 30 days)
Camilla
Camilla on 4 Feb 2012
I could play music in my GUI with the function "soundsc", because I've tried using audioplayer, but it didn't work.The real problem is that I'd like to be able to pause and resume my track as I want pushing the same button. I've already tried with
if isrunnig/isplaying(a)
pause(a)
elseif resume(a)
end
but it still doesn't work! What can I do?
Thanks
  1 Comment
Jan
Jan on 4 Feb 2012
What exactly is "a"? What does not work with AUDIOPLAYER?

Sign in to comment.

Answers (1)

Daniel Shub
Daniel Shub on 6 Feb 2012
You have not provided much information. It seems like your function works with soundsc but not with audioplayer. I am guessing your function also works with sound. If not, it is a scaling issue. My guess as to why it does not work with audioplayer is that you are not saving the audioplayer object (again guessing it is your variable "a") anywhere and then when you function/callback exits the audioplayer gets deleted.

Community Treasure Hunt

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

Start Hunting!