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.

In C# I cannot get SoundPlayer class from System.Media to play any wav from my C:\Windows\Media folder using the following code. All I get is no sound:

String filename = "C:\\Windows\\Media\\tada.wav";
SoundPlayer sp = new SoundPlayer(filename);
sp.Load();
sp.Play();

I have checked the wave file "tada.wav" with a program called "Gspot" that tells me the audio codec is "PCM Audio". I do not receive any compiler warnings or errors and there is no exceptions raised when I run the program. I just do not get any sound. My speakers are on, and I can play the file with Windows Media Player.

Adding the wav as a project resource does not make any difference. Could somebody please help me figure out why I cannot get any sound?

share|improve this question

1 Answer

up vote 1 down vote accepted

Are you using this as the body of a main() method in a console application? The application is probably ending, thereby shutting down the thread which plays the audio.

I copied and pasted your code into the main of a new "Visual C# Console Application". I added the "using System.Text;" line at the top of the file, compiled, stepped through it, and it worked. When I ran it (without debugging) I got no sound.

If you add the line:

System.Threading.Thread.Sleep(2000);

After the call to Play(), the application will stay around long enough to play the audio.

share|improve this answer
This was the answer, I added the Sleep call and problem is solved. Thank you so much for solving this problem. – meschael Aug 6 '12 at 21:49
Correct it was the body of main inside a console application. – meschael Aug 6 '12 at 21:51
Great! Also, you'll want to make sure the integer parameter to sleep is the length (in milliseconds) of the audio file. The 2000 is 2 seconds, but you might need to change it for longer audio files. – PaulPerry Aug 6 '12 at 22:00

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.