Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

How can I get the rest of the function to quit once a sound file is done playing out?

2 Ansichten (letzte 30 Tage)
Kristi
Kristi am 3 Sep. 2014
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
I am working with a PsychToolbox code that plays out a continuous sound file (let's call it "Sound1") for approximately 2 minutes while a certain image is displayed on the computer screen. When Sound1 finishes play out, I want the image display to quit as well. The tricky part is that all of the sound files I will be playing out are not the same duration, so I cannot use a command to close out of the image display that is based on time. Are there any recommendations as to what syntax to use?

Antworten (1)

Andrew Reibold
Andrew Reibold am 3 Sep. 2014
Bearbeitet: Andrew Reibold am 3 Sep. 2014
If you use the audioplayer function you can use the stop function to close the image.
StopFcn - Function to execute one time when playback stops.
  1 Kommentar
Joseph Cheng
Joseph Cheng am 4 Sep. 2014
Bearbeitet: Joseph Cheng am 4 Sep. 2014
if not using audioplayer, you probably know the samplerate and number of samples of the audio such that you can calculate the number of seconds it is.
oh and FYI, There is a slight delay for the StopFcn
load chirp
bird = audioplayer(y,Fs);
playfunc = @(hand,ob) toc;
set(bird,'StopFcn',playfunc)
tic,play(bird)
which for me has a duration of 2.051 seconds but based on the number of samples in y and the sample rate Fs it should be close to 1.6 seconds. Not sure if that small bit of time matters to you.

Community Treasure Hunt

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

Start Hunting!

Translated by