New Post: InvalidOperationException on playing some MP3 files
I put that exception in to show that the MP3 is not playable by NAudio. The only options when you get a sample rate change in NAudio are to close your WaveOut device and open another at the new sample...
View ArticleCommented Issue: WMA [16370]
Hello,the WMA file only works with WaveOut () standard.With other DriverOut, I receive an error message from WMAStream function Read(GetNextSample).Tested with your NAudio Demo 1.6Comments: the problem...
View ArticleNew Post: InvalidOperationException on playing some MP3 files
Oh, okay...because I'm playing the sample music in Windows 7. One of them gave me that exception.
View ArticleNew Post: Audio Samplerate
Hello, I'm using some very simple code to open and play a wave file, using a DirectSoundOut object. Â If I open a 44.1kHz wave file to start, then the output on WinXP is 44.1kHz to my USB sound card....
View ArticleNew Post: Choppy Audio While Testing NetworkChatDemo
Good Afternoon,  I've been testing the network chat demo and I noticed that when the host computer begins streaming, the audio coming from the microphone works well. However, when another client...
View ArticleNew Post: Choppy Audio While Testing NetworkChatDemo
the demo code doesn't support multiple clients. You'd need a separate BufferedWaveProvider for each incoming stream and then mix them together with the MixingSampleProvider.
View ArticleNew Post: Choppy Audio While Testing NetworkChatDemo
Thank you for clearing that up for me. I didn't realize that the demo didn't support more than one client.
View ArticleNew Post: About audio level alignment
I found the maximum amplitude of a wavefile1 in respect to 1. I want to play awavefile2 whose maximum amplitude is at 1 with the same volume in realtime aswavefile1 to have them at equal volume when...
View ArticleNew Post: Audio Samplerate
The actual sample rate that the sound card runs at is determined by the operating system, and NAudio is not able to control it with the waveOut or DirectSound out APIs.
View ArticleCommented Issue: the Mp3FileReader should not set stream position [16371]
It appears that we could add a few smarts to the Mp3FileReader and make it so that it would not have to use the Position property on the stream. Not all streams (especially web streams) allow the Seek...
View ArticleNew Post: About audio level alignment
You can adjust volume using any of the SampleProviders or WaveProviders with a volume property. For example, if you use AudioFileReader, then you can simply set its Volume to 0.3
View ArticleNew Post: Need help with exception thrown by NAudio
not sure what is causing this, I'll try to reproduce if possible. It is possibly related to http://naudio.codeplex.com/workitem/16347
View ArticleEdited Feature: AutoCue [16366]
I created a class on the basis of AudioFileReader to integrate an Autocue option (as with CD Player) to readjust the beginning of the song without white or 'click' the beginning of song.Enclosed Class...
View ArticleNew Post: How to create a virtual audio source with NAudio?
To create a virtual audio input source to use in Skype etc. by mixing Line in and some other wave file together. Like Virtual Audio Cable.
View ArticleNew Post: How to create a virtual audio source with NAudio?
Unfortunately you can't create Virtual Audio Cable with NAudio - you'd need to use the Windows Driver Kit and make it in C/C++.However, if you want to feed audio ito Skype then you can look at the...
View ArticleNew Post: How to create a virtual audio source with NAudio?
That's what I want to do."you open up a port and send audio to it"Elaborate please.
View ArticleNew Post: WaveIn stops after unplugging the Mic jack
HiThere's a strange problem with WaveIn. When I unplug the Mic jack, recording stops and I can't start it again. I just can start it again if I close the program and open it again.I followed the...
View ArticleNew Post: WaveIn stops after unplugging the Mic jack
You should get a RecordingStopped message, probably with an Exception set. You'd need to dispose WaveIn, and create a new one to start recording again.
View ArticleNew Post: WaveIn stops after unplugging the Mic jack
I exactly did that, but it doesn't work. To my surprise the windows native sound recorder program works exactly like my application. In both programs (my program and windows sound recorder) I have to...
View Article