i am using NAudio to play a sinewave of a given freq as in this post: http://mark-dot-net.blogspot.com/2009/10/playback-of-sine-wave-in-naudio.html
I just want the sound to play() for x milliseconds, then stop
I tried a thread.sleep but the sound stops straight away. I tried a timer but when the WaveOut is disposed there is a cross-thread exception.
Edit: tried this code but when I call beep the program freeze.
public class Beep
{
public Beep(int freq, int ms)
{
SineWaveProvider32 sineWaveProvider = new SineWaveProvider32();
sineWaveProvider.Amplitude = 0.25f;
sineWaveProvider.Frequency = freq;
WaveOut waveOut = new WaveOut(WaveCallbackInfo.FunctionCallback());
waveOut.Init(sineWaveProvider);
waveOut.Play();
Thread.Sleep(ms);
waveOut.Stop();
waveOut.Dispose();
}
}
public class SineWaveProvider32 : WaveProvider32
{
int sample;
public SineWaveProvider32()
{
Frequency = 1000;
Amplitude = 0.25f; // let's not hurt our ears
}
public float Frequency { get; set; }
public float Amplitude { get; set; }
public override int Read(float[] buffer, int offset, int sampleCount)
{
int sampleRate = WaveFormat.SampleRate;
for (int n = 0; n = sampleRate) sample = 0;
}
}