I am using the PlaySound function from the Win32 SDK to play a wave sound file. Currently, I have the following line of code:

PlaySound(szFile,NULL,SND_FILENAME );

But now I want to know, how I can detect the time when the wave file finished playing? I want to change a button's text when the wave stops playing.

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

PlaySound is very limited in what it can do. In a product I work on, we built a media playback library on top of DirectSound to do get over the limitations. Among many things it did, it involved writing a WAV file parser and threading code to maintain a stream of PCM samples into a DirectSound buffer. Not for the faint of heart.

You could go this route, but here's some simpler suggestions.

  1. If you know the length of the WAV file you are playing, you can call PlaySound with the SND_ASYNC flag. Schedule a timer to fire at the estimated time the sound is supposed to finish playing. If you don't know the length of the WAV file, you could write a parser to read the header of the file. Compares the sampling rate and format from the "fmt" chunk to the number of bytes in the data chunk to compute the time length of the file.

  2. OR.... Create a dedicated thread for issuing PlaySound calls (without the SND_ASYNC flag). When the synchronous PlaySound function returns, do a PostMessage to your UI thread to update the button. If you have overlapping calls to PlaySound, you'll likely need to do some multi-threaded synchronization, but it shouldn't be hard.

link|improve this answer
Why does this need to happen on a second thread? – Cody Gray May 9 '11 at 8:29
multi-threading seems worth have a try. – tunpishuang May 9 '11 at 8:33
@Cody. I don't know the asker's scenario, but I'm presuming he doesn't want to block his UI thread if his sound is sufficiently long. Otherwise his UI will appear frozen and unresponsive while the sound plays. He could use SND_ASYNC, but he wouldn't have anyway of knowing when the sounds has finished playing. – selbie May 9 '11 at 9:22
Yeah, that's certainly reasonable. I didn't consider that the sound file was very long, and the question didn't give very much detail to make me think otherwise. – Cody Gray May 9 '11 at 9:28
feedback

Unless you specify the SND_ASYNC flag, the PlaySound function is synchronous, meaning that after you call it, it does not return control to your program until after it has finished playing the sound file.

Therefore, once the function returns a value (either TRUE if successful, or FALSE otherwise), you know that the sound has finished playing.

You can simply update the text of your button control in the next line of code, immediately after you call the PlaySound function. If you want to ensure that the button gets updated immediately to reflect your changes, you might need to call the UpdateWindow function, as well.

link|improve this answer
using SND_ASYNC can still not get the stop playing timepoint of the wave file. – tunpishuang May 9 '11 at 8:31
@tunpishuang: Yeah. I said not to use SND_ASYNC. – Cody Gray May 9 '11 at 8:32
if using SND_SYNC and the wave file is pretty long , user have to wait till the end of the playing , but cannot interrupt the playing, because the windows message loop doesn't run and wait for the end of the playing. that is a also not good for the program. – tunpishuang May 9 '11 at 8:39
@tunpishuang: Information like that should have been in your question. If you are wanting to play a long sound file, I think that merits specific mention. Don't force us to guess at the details. – Cody Gray May 9 '11 at 9:29
sorry for i cannot explan my question well, because of the poor english. xD thx anyway. – tunpishuang May 9 '11 at 12:51
feedback

Your Answer

 
or
required, but never shown

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