Tagged Questions
The soundplayer tag has no wiki summary.
5
votes
8answers
462 views
SoundPlayer causing Memory Leaks?
I'm writing a basic writing app in C# and I wanted to have the program make typewriter sounds as you typed. I've hooked the KeyPress event on my RichTextBox to a function that uses a SoundPlayer to ...
3
votes
1answer
418 views
Play wav/mp3 from memory
I play mp3/wav from file to create a push effect. However on an Atom CPU based tablet PC, there is a delay when I touch the button.
I'll try to play wav/mp3 from memory instead of file system. Can ...
2
votes
3answers
76 views
How to play a music file for a specified amount of time
What I'm trying to do is play a music file for a specified duration, and then stop playing. However, the whole music file is being played. Any ideas?
I've tried starting a new thread, still doesnt ...
1
vote
1answer
34 views
What is better solution for playing sounds in .net application: Audio from DirectX lib or System.Media.SoundPlayer?
As i know SoundPlayer plays only .wav files..And what is the point of it if Audio can play any format(if you have the right codec)? Isnt it better to just use Audio in your classes and be happy?
1
vote
1answer
170 views
System.Media.SoundPlayer, Playing more than 1 sound?
Is there a way to play more than one sound while let's say the background music is going?
The way I have it is:
public static void PlaySound(string filename)
{
SoundPlayer player = ...
1
vote
1answer
89 views
How do I ensure reliable async wav playback in dotnet?
I am playing wav files as user prompts in dotnet. My code works fine on a laptop, but seems to skip sounds on a netbook. How do I ensure wav playback is consistent on the netbook in dotnet?
Current ...
1
vote
0answers
439 views
System.Media.SoundPlayer.Play() freezes GUI
I am trying to implement a simple game in .NET with C#. There is a ball bouncing against objects, and when it bounces I play a sound asynchronously using System.Media:SoundPlayer. The problem is that ...
1
vote
1answer
730 views
How to play a pure PCM raw stream with C#?
I was looking into System.Media.SoundPlayer and NAudio, and AFAIK they only play WAVE streams. The WAVE file is composed of the pure PCM data plus a format header.
I don't want to provide this header ...
1
vote
2answers
692 views
Get length of wav file? (playing wav with soundplayer class)
I'm playing wav sound files using the .NET SoundPlayer class in my program, is it somehow possible to get the length of the wav file (in milliseconds)?
Thanks for answers.
0
votes
2answers
62 views
Threading issue when playing music file
What I'm trying to do is play a music file for a specified duration, and then stop playing. However, the whole music file is being played. I cannot use the 'PlaySync()' method as I cannot have the ...
0
votes
6answers
83 views
How to play all music files stored in ArrayList
I've got an ArrayList which contains a number of sound files as elements. A foreach loop iterates this collection, and plays each note.
The problem is that when the program is run, only the last ...
0
votes
2answers
71 views
URI Prefix not supported
I am trying to load and play a wave file using:
SoundPlayer simpleSound = new SoundPlayer(@"pack://application:,,,/MyAssembly;component/Sounds/10meters.wav");
simpleSound.Play();
With ...
0
votes
1answer
349 views
SoundPlayer.PlaySync stopping prematurely
I want to play a wav file synchronously on the gui thread, but my call to PlaySync is returning early (and prematurely stopping playback). The wav file is 2-3 minutes.
Here's what my code looks like:
...
0
votes
1answer
257 views
playback audio file from byte code (audio file format is CCITT A-Law)
I want to playback audio file from byte code. I already have byte code for audio file.
But when I playback with System.Media.SoundPlayer, I got error as "{Sound API only supports playing PCM wave ...
0
votes
2answers
276 views
Stopping a SoundPlayer loop at the local level
I'm working on setting up an alarm that pops up as a dialog with multiple sound file options the user can choose from. The problem I'm having is creating a sound player at the local level that I can ...
0
votes
2answers
2k views
SoundPlayer and Windows 7 wav file
When I try to play the sound file "Windows Critical Stop.wav" I get the following exception: exec {"Sound API only supports playing PCM wave files."} System.Exception ...
0
votes
1answer
873 views
Playing embedded wav files using SoundPlayer
I have a Compact Framework 3.5 application that is responsible for scanning barcodes. There are 3 different sounds it should play depending on the situation, so I created a wrapper class around the ...
0
votes
4answers
855 views
C# - .WAV Playback Randomly High Pitch
For some reason, when a WAV file is played back using the snippet below, it randomly plays back screwy, like a high pitch noise. It doesn't happen all the time, just randomly. It seems to happen ...
-1
votes
1answer
52 views
Play wav file for a specific time in C# using SoundPlayer
I have a wav file and I need to play the first 1 second of this wav file in my C# Window Application? How can I do that using the SoundPlayer please? Should I use a timer?