New Post: WaveIn stops after unplugging the Mic jack
Yes, but I just can't understand that what's the relation of this problem and closing the programs. It seems that something doesn't release after disposing the WaveIn. How it's possible?
View ArticleNew Post: How to create a virtual audio source with NAudio?
So I looked at http://channel9.msdn.com/coding4fun/articles/Skype-Voice-Changer. I started reading at Intercepting Skype Audio.What I understand is that the most important part is void...
View ArticleNew Post: WaveIn + _DataAvailable + WaveMixerStream32
So I have void waveInStream_DataAvailable(object sender, WaveInEventArgs e)How do I deal with e.Buffer to create an object that WaveMixerStream32 can add with AddInputStream?
View ArticleNew Post: WaveIn stops after unplugging the Mic jack
I couldn't find the main problem of the software part, but I solved this problem by disabling the "front panel jack detection" in Realtek HD Audio Manager software. I hope it can help some one.
View ArticleNew Post: Visual Studio 2012 express - NAudio Components don't show in toolbox
Hi I am a C# beginner too. I followed the steps 1) right click into the toolbox2) click "Choose items"3) in the now visible "Choose Toolbox Items"-dialog click on "browse"But I can't find the...
View ArticleNew Post: Moving source code on GitHub
Thank you very much for this clarification. I understend very well your motivation to rest on CodePlex and I respect it.On Thu, Oct 25, 2012 at 4:22 PM, markheath <notifications@codeplex.com>...
View ArticleNew Post: G.727 Support
Hello Mark,I'd like to use NAudio to play 5-, 4-, 3- and 2-bit/sample ADPCM (G.727), but as far as I see G.727 is not supported. Am I wrong with that assumption? Do you see any chance to play that...
View ArticleNew Post: G.727 Support
NAudio can use any ACM codec installed on your system. So if you have a G.727 ACM codec, you will be able to use it to decompress the audio. You would also need to create a WaveFormat with exactly the...
View ArticleNew Post: G.727 Support
Hi Mark,thank you for your fast reply.I don't have a G.727 ACM codec installed, but me collegue gave me a dll where I can call a function to convert from G.727 to ALaw.The last hours I tried to write...
View ArticleNew Post: G.727 Support
Yes, that is a reasonable enough solution. WaveStream is a bit more complex to implement than IWaveProvider as it also suports repositioning
View ArticleNew Post: Remove noise from Audio file
I'm a beginner. I want to know how to remove noise from an audio file.(More over : Is it easy or possible to remove the noisy part of the file manually from plotted waveform of the file ?)
View ArticleNew Post: G.727 Support
Actually I need repositioning, but that task comes later. For now I would be happy if I understood, how to provide the correct settings to play that adpcm data.My G727WaveStream provides a WaveFormat...
View ArticleNew Post: G.727 Support
You'll still need to use WaveFormatConversionStream.CreatePcmStream to go to PCM before you try playing.
View ArticleNew Post: Generate bandpass filtered white noise
Hi Mark,I'm using your NAudio library to generate acoustical stimulations in a psychophysic experiment.By the way, Great work !!!I need to generate a white noise filtered between...
View ArticleNew Post: Generate bandpass filtered white noise
I'm afraid NAudio doesn't come with a bandpass filter (I'd like to include some filters in the future). What I normally do in cases like this is find some C code that does the filtering (there are good...
View ArticleNew Post: Remove noise from Audio file
You'd have to come up with your own algorithm that decided what was noise. For the second part of your question, have a look at the .NET Voice Recorder project I created which allows you to view the...
View ArticleNew Post: Generate bandpass filtered white noise
Hello,If I can afford , you can use the example in BiQuadFilter.It just takes a little change for use with iSample.I use it for multiple parametric Equalisers.I tested LowPass and HiPass and they...
View ArticleNew Post: Generate bandpass filtered white noise
ah yes, I forgot that was still in there :) I want to get this converted to ISampleProvider for the next NAudio
View ArticleNew Post: Play Pause Play
Hello,Thank you for your comment.I had a moment to consider this solution.I must find the time to implement it.
View Article