Sound in GUI
1 view (last 30 days)
Show older comments
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
Answers (1)
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.
0 Comments
See Also
Categories
Find more on Audio and Video Data in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!