Clear Filters
Clear Filters

Push button audio for GUI

4 views (last 30 days)
Caitlin Hoying
Caitlin Hoying on 21 Nov 2017
Commented: Deepu S S on 9 Jul 2021
Hello,
I have a class which I need to create a GUI. I am new to MATLAB and could really use some help.
What I'm planning to do is when a push button is pressed, the audio file plays then stops. I pasted the part of the script below with the audio in it.
% --- Executes on button press in pushbutton3. Reset Button
function pushbutton3_Callback(hObject, eventdata, handles)
% hObject handle to pushbutton3 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
set(handles.listbox1,'Value',1)
set(handles.popupmenu1,'Value',1)
listbox1_Callback(hObject, eventdata, handles)
load handel;
player = audioplayer(y, Fs);
play(player);
popupmenu1_Callback(hObject, eventdata, handles)
_____________
Thanks!!
  1 Comment
Deepu S S
Deepu S S on 9 Jul 2021
bro can share the final code. i'm also new to matlab i need these kind of code please help me

Sign in to comment.

Accepted Answer

Walter Roberson
Walter Roberson on 21 Nov 2017
Change
play(player)
to
playblocking(player)
Otherwise the function will return after it starts playing, and when it returned it would destroy the local variables including the variable that stores the audio player; that would stop the playing.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!