Sound in GUI
1 次查看(过去 30 天)
显示 更早的评论
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 个)
Daniel Shub
2012-2-6
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 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Audio and Video Data 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!