Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I used wavread() to read in 3 wave files:

[wave_1 f1]=wavread(s1);
[wave_2 f2]=wavread(s2);
[wave_3 f3]=wavread(s3);

where s1,s2,s3 are the paths for the wave files. The problem is that they are played all at once. How can I play the first, then the second, then the third one after the another?

share|improve this question
5  
wavread doesn't play the file... – Oli Charlesworth Dec 23 '11 at 1:41
Did my answer work for you? – Richard Povinelli Jan 1 '12 at 6:21

1 Answer

To play the files sequentially, use the playblocking function. Here is what your code would look like:

[wave_1 f1] = wavread(s1);
[wave_2 f2] = wavread(s2);
[wave_3 f3] = wavread(s3);

player1 = audioplayer(wave_1, f1);
playblocking(player1);

player2 = audioplayer(wave_2, f2);
playblocking(player2);

player3 = audioplayer(wave_3, f3);
playblocking(player3);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.