Effacer les filtres
Effacer les filtres

PLAY/STOP pushbutton

24 vues (au cours des 30 derniers jours)
Ana Campos
Ana Campos le 3 Août 2019
Commenté : Walter Roberson le 4 Août 2019
Hi!
I was wondering if anyone knows how to help me with this please.
Below is the code for a pushbutton that I am using to PLAY/STOP audio.
I need to be able to play and stop audio with the same button. That audio must be played in loop until the user pushes the button again. These two things the code is already doing.
My problem is: Once the user pushes the button and the audio stops, I need a way to allow the user to repeat the process as many times as he needs to by pushing the button again.
I understand why my code is not allowing me to repeat the process at the moment but I am not being able to think of a solution for what I need to do.
Thanks in advance for your help.
Cheers
% --- Executes on button press in playLOOP.
function playLOOP_Callback(hObject, eventdata, handles)
% hObject handle to playLOOP (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
%generates random file
persistent check1
if isempty(check1)
check1 = 1
wavFileToPlay = handles.myWavFiles{handles.wavFileIndex}; % this is just to give the code the ID of a random song from my playlist, that will be played now
[x, fs] = audioread(handles.wavFileToPlay);
pause (0.1);
sound (x,fs)
set(handles.playLOOP,'string','STOP');
pause (11);
else ~isempty(check1)
%check1 = []
clear sound;
set(handles.playLOOP,'string','PLAY');
end

Réponse acceptée

Walter Roberson
Walter Roberson le 3 Août 2019
The only known way to stop sound() from playing is to
clear sound
You should be looking at the pause() and resume() audioplayer methods, and you will need to use the audioplayer callbacks to detect end of sound to know to play() the object again in order to loop. There will generally be a delay in playing before the player restarts.
I would suggest that you instead look at the Audio System Toolbox in order to be able to stream audio.
  7 commentaires
Ana Campos
Ana Campos le 4 Août 2019
Thanks!
Walter Roberson
Walter Roberson le 4 Août 2019
% --- Executes on button press in playLOOP.
function playLOOP_Callback(hObject, eventdata, handles)
% hObject handle to playLOOP (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
%generates random file
persistent player
if isempty(player)
wavFileToPlay = handles.myWavFiles{handles.wavFileIndex}; % this is just to give the code the ID of a random song from my playlist, that will be played now
[x, fs] = audioread(handles.wavFileToPlay);
player = audioplayer(x, fs);
set(handles.playLOOP,'string','STOP');
play(player);
else
stop(player)
set(handles.playLOOP,'string','PLAY');
player = [];
end
You still need to adjust this to have a callback on the audioplayer in order to trigger it to play in a loop. See the audioplayer documentation for callback properties.

Connectez-vous pour commenter.

Plus de réponses (0)

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by