Tagged Questions

5
votes
1answer
77 views

Machine Sounds in C#

I want add machine sounds to my router table simulator program. The idea is to hear the stepper motors accelerate and decelerate with a change in pitch synced with my graphics. Same with the spindle ...
3
votes
4answers
97 views

Playing Sound in C# - which of all ways to use?

I'm trying to write a little C# .net - application that plays sounds randomly from folders when specific buttons are clicked. So I spend some time finding the right way to realise that. In my head ...
3
votes
2answers
701 views

How do I play the “New Mail” system sound in .Net?

How do I play the "New Mail" system sound in C#? This is also called the "Notify" sound. In Win32, that would be something like sndPlaySound('Notify', (SND_ALIAS or SND_ASYNC)); So how do you do ...
2
votes
1answer
124 views

How to programmatically determine system device sound settings?

I have to write a simple Silverlight app for WP7. If the phone is muted in system, the program must not play sounds, but if the phone is not muted the program must play sounds. How to ...
2
votes
0answers
119 views

WPF (system)sounds don't work

I have the following problem: I just want to play a short sound but I hear nothing. The soundfile's property "Copy to output directory" says "Copy always". Strangely when I copy a existing and working ...
2
votes
1answer
103 views

How to use Alvas.Audio to detect any sounds?

I have a problem with start to code my app. How I can detect sounds provided to my microphone using Alvas.Audio library? Could anyone provide me a sample code (i don't know how to use bulit-in ...
2
votes
2answers
523 views

Visual Studio Play Sound With No File Present

It's fairly simple to play a sound file, say temp.wav, from Visual Studio C#. I'm looking for a way to do this without temp.wav being locatable from the machine running the program. IE - I want to ...
2
votes
2answers
649 views

SystemSounds Play not working

I am trying to play the Asterisk system sound from a C# program with System.Media.SystemSounds.Asterisk.Play(); but no sound plays. My system does have a sound set up for Asterisk and other ...
1
vote
4answers
38 views

How to read the data in a wav file to an array

I need to get all the samples of a wav file into an array (or two if you need to do that to keep the stereo) so that I can apply some modifications to them. I was wondering if this is easily done ...
0
votes
1answer
199 views

Playing an array of sounds, windows phone 7

My question is the following: How do I set up an array of sounds, so that a single button can play them? I have 5 wavs (sounds1.wav, sounds2.wav .... sounds5.wav), and ideally I would like for them ...