Borrar filtros
Borrar filtros

Push button audio for GUI

4 visualizaciones (últimos 30 días)
Caitlin Hoying
Caitlin Hoying el 21 de Nov. de 2017
Comentada: Deepu S S el 9 de Jul. de 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 comentario
Deepu S S
Deepu S S el 9 de Jul. de 2021
bro can share the final code. i'm also new to matlab i need these kind of code please help me

Iniciar sesión para comentar.

Respuesta aceptada

Walter Roberson
Walter Roberson el 21 de Nov. de 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.

Más respuestas (0)

Community Treasure Hunt

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

Start Hunting!

Translated by