The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
50 views

Play a sound while key is down

i would like to play a sound in C# while the key is down. If the key is released the sounds automatically stops. This is what I have so far: var player = new System.Windows.Media.MediaPlayer(); ...
0
votes
3answers
104 views

Playing wav file which has relative path inside project

I have some problems with relative paths and reproduction of wav files. I have this simple code which works perfectly: SoundPlayer player = new SoundPlayer(); player.SoundLocation = ...
0
votes
1answer
96 views

asp.net SoundPlayer not playing from server

I have made the simplest test in order to check if SoundPlayer will play a wave file. From the local machine works just fine, once the site is on IIS it doesn't play the sounds (or give any error). ...
0
votes
0answers
142 views

How to stop PlaySync() in SoundPlayer on button click in C# windows forms

I have a window application that enables you to play sound based on the letter you click. You can repeat the sound based on the number you entered in the TextBox and you can play from 1 to 3 in a ...
1
vote
0answers
71 views

.net SoundPlayer event never firing

So I'm trying to use a soundplayer to load a wav file, and then fire an event after it's done loading it. Reason being is that I don't want my program to continue on until the WAV is fully loaded and ...
-1
votes
1answer
51 views

Variable not declared error in a Maze Game

The maze game I have developed via a tutorial I found by research is doing well. Step by step I have been debugging this application for Windows using VB in Visual Studio 2012. I was told by the ...
0
votes
0answers
21 views

default sound player showing url in taskbar while playing audio from web

I m making an application.Default sound player showing url in taskbar while playing audio from web. I want to hide the URL and give some custom msg on the sound player. Can any one help please?
0
votes
0answers
130 views

SoundPlayer doesn't stop playing while playing sync?

I want to control Play/Stop functions in one button using SoundPlayer. When user clicks Play button, while playing button text will be Stop and after finish playing button text will be Play again. ...
1
vote
0answers
85 views

How to control SoundPlayer WhilePlaying and AfterPlay Events?

I have Play and Stop buttons and I want to combine them into one button which works in two functions. However, I couldn't find any WhilePlaying() or AfterPlay() events. I googled some and I've found ...
0
votes
1answer
160 views

Playing sounds: accessing length and position

I'm using the System.Media.SoundPlayer for playing sounds in C# desktop application passing the sound location. Everything works fine. But how can I access the total file length (in milliseconds) and ...
1
vote
1answer
117 views

How to play multiple wav sounds at the same time in .NET CF 3.5

I am trying to make WAV Sound Player in .NET Compact Framework 3.5 for Win CE but encountered problems. I need to play two sound simultaneously but System.Media.SoundPlayer breaks the execution when ...
0
votes
1answer
81 views

C# change image when sound stops playing

I am making a .wav player application in which I have a button to play the loaded .wav So if the sound is playing a "pause" button will be showed and when it stops a "play" button will be showed. ...
0
votes
1answer
125 views

J2ME Player doesn't play files that were converted from ogg

So far all mp3 files I've tried work just fine, however, when trying a file I converted from Vorbis format it just wouldn't play. No errors or anything, it's just that it doesn't make any sound. ...
0
votes
0answers
48 views

SoundPlayer generate noise

i have created a soundplayer in c sharp to play wav files. when i play sound clips,it generates noise after playing the sound. SoundPlayer simpleSound = new SoundPlayer(); simpleSound ...
0
votes
2answers
339 views

How to play a sound without creating a new player each time

I'm working in a form project and playing a few sounds in some methods and events. For example, in a method I have this one: SoundPlayer sndplayrONE = new SoundPlayer(Properties.Resources.wavsound1); ...
1
vote
1answer
116 views

SoundPool stops only once

Pressing the button the first time stops Sound. But pressing it after that does not have any effect. This is my java code: public class App extends MultiTouchActivity { SoundPool sp; int dub1s; ...
0
votes
1answer
274 views

c# SoundPlayer playlist loop

Maybe I have a simple question, but I am little bit confused from MSDN. I want to use something to play music. I know it may sound easy. private void playMusic(string path) { using ...
1
vote
3answers
1k views

SoundPlayer and playing a seamless succession of sounds

What I'm trying to do is play a looping wav, but with a specific loop start position like the samples used in music module files (.it, s3m. .mod, etc.). SoundPlayer doesn't have this feature, so I ...
2
votes
1answer
433 views

SoundPlayer not playing any bundled windows sounds PCM wav files

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 = ...
1
vote
2answers
115 views

How to play all words using narrator?

my project is text to speech project, here is my code, string amma = myacess.Text; // string[] words = Regex.Split(amma,"*"); char[] delimeter = new char[] { '*' }; string[] words = ...
0
votes
1answer
63 views

XML sound's byte form

I have a .wav file and i write this byte form to XML. I want to play this song on my form but I am not sure I am correct and it doesn't work. Str is my file's byte form. byte[] soundBytes = ...
3
votes
1answer
263 views

How to append .wav format sounds to each other

I am studying C# by myself by reading some books and watching some tutorials. So, i decided to make a small project at the same time, to get more experience and harden my knowledge. I am trying to ...
1
vote
3answers
140 views

How to append sounds in C#

I am studying C# by myself by reading some books and watching some tutorials. So, i decided to make a small project at the same time, to get more experience and harden my knowledge. I am trying to ...
1
vote
2answers
629 views

C# SoundPlayer static after WAV plays

I'm using this code to play a WAV file from a resource, and the audio plays correctly, but then I get a short blast of static after it plays (about 1/2 second): ...
0
votes
2answers
178 views

ASP.NET Sound Resource not publishing

So I created an ASP.NET 4 application in VS2010, that needs to play sound to the end user, and it is working perfectly in my local development environment. The problem is the sound resource nor the ...
0
votes
1answer
350 views

Alternatives to SoundPlayer

I'm using the SoundPlayer class to play WAV files in my WPF application. The files are short and are part of the application and are played in response to events that occur in the program. The user ...
0
votes
0answers
99 views

.NET SoundPlayer or application mute

There is a program which has several classes and each of them contains SoundPlayer instance. How can I mute/unmute all sounds from the program? (on CheckBox CheckedChanged but that's not important)
0
votes
2answers
96 views

is it possible to add sound effect to the Kinect Paint buttons?

sorry for my bad English and straight forwarding. i have something about the coding to ask... i would like to ask, is it possible to add sound for all the button? seems like the button with a ...
0
votes
1answer
333 views

Play custom formats with C# SoundPlayer class

By default, it can play just .wav. Is there a way to make it play other format?
0
votes
2answers
299 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 ...
2
votes
3answers
451 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 ...
0
votes
6answers
368 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
1k 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 ...
1
vote
1answer
114 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
1k 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 = ...
3
votes
2answers
2k 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 ...
0
votes
1answer
834 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: ...
1
vote
1answer
164 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 ...
6
votes
8answers
992 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 ...
1
vote
2answers
471 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 ...
1
vote
0answers
759 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
1k 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 ...
0
votes
2answers
721 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 ...
1
vote
2answers
1k 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
3k 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
2k 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
1k 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 ...