New Post: Any news on an equalizer?
I'm afraid the only sample so far is when I used it as part of a synthesizer in my NAudio pluralsight course. It's definitely on the list of bits of NAudio I want to include as demos in the sample code...
View ArticleNew Post: Any news on an equalizer?
Hm, can't download anything without a subscription.. :D do you have the sample any other place?
View ArticleNew Post: Adaptive Mic Recording (Fill glap with silence to keep accurate time).
How am i supposed to use WaveProvider16, i can't add samples or anything to it, so i am a bit confused?
View ArticleCreated Unassigned: WaveFormatConversionStream class attempting to reference...
Greetings all,I am using 1.7 to play around with WaveOut Audio using the Event callback mechanism. Whenever I exit out of the demo while audio is playing the Visual Studio is raising an unhandled...
View ArticleEdited Unassigned: WaveFormatConversionStream class attempting to reference a...
Greetings all,I am using 1.7 to play around with WaveOut Audio using the Event callback mechanism. Whenever I exit out of the demo while audio is playing Visual Studio is raising an unhandled exception...
View ArticleNew Post: Adaptive Mic Recording (Fill glap with silence to keep accurate time).
You would need to modify it to suite your needs, add your own AddSamples() function and a MemoryStream or a List collection of samples that will be read by the output interface (wavefilewriter).
View ArticleCommented Unassigned: WaveFormatConversionStream class attempting to...
Greetings all,I am using 1.7 to play around with WaveOut Audio using the Event callback mechanism. Whenever I exit out of the demo while audio is playing Visual Studio is raising an unhandled exception...
View ArticleNew Post: Adaptive Mic Recording (Fill glap with silence to keep accurate time).
I think you're overcomplicating this. No need for an extra thread. When you get a DataAvailableEvent, write immediately to the file while still in the handler. Here;s some (completely untested and very...
View ArticleCommented Unassigned: Wrong BitsPerSample with WasapiLoopbackCapture [16401]
HelloI have a 24 bits per sample / 192kHz sound board and I am using the Wasapi Loopback Capture method to get data from it.When I print out the capabilities of the board, it shows 32 bits per sample...
View ArticleNew Post: Adaptive Mic Recording (Fill glap with silence to keep accurate time).
Why i am using an Extra Thread is simply to make it easier as i send the Mic data, and i write it, so if i just add the data to a Queue (Silence or real data) it will be in order on that thread anyway....
View ArticleCommented Unassigned: Wrong BitsPerSample with WasapiLoopbackCapture [16401]
HelloI have a 24 bits per sample / 192kHz sound board and I am using the Wasapi Loopback Capture method to get data from it.When I print out the capabilities of the board, it shows 32 bits per sample...
View ArticleNew Post: Spectrum Analyzer FFT
I'm trying to get my spectrum analyzer to display a more realistic curve. At the moment most of the frequency band is at the bass end. Here is a clip (its only 620KB M4V...
View ArticleNew Post: Resample WAV in memory
Hi, Thanks you for code. It helped a lot but I when i writeAllbytes Buffer the sound doesn't play? Why? i want to have it in a byte array not a file.wav
View ArticleNew Post: Resample with raw data
Hi, I juste want to resample but only CreateWaveFile work and i dont want a wave file bye [] data = From64String("----- string encoded ---"); MemoryStream fs = new MemoryStream(data); var baseDir =...
View ArticleNew Post: Adaptive Mic Recording (Fill glap with silence to keep accurate time).
I have been looking at the Source Code on BufferedWaveProvider, but i can't see what part adds Silence, it just looks like a normal Add/Read/Clear class, nothing fancy automatic operation?
View ArticleNew Post: Adaptive Mic Recording (Fill glap with silence to keep accurate time).
BufferedWaveProvider doesn't add silence, it just returns silence when you read if there's nothing in the buffer. So if you have something reading in real-time from it, then it will handle the silence...
View ArticleNew Post: Adaptive Mic Recording (Fill glap with silence to keep accurate time).
Well in the end it will be the same though, silence will get "added", well that itself isn't a problem, however, the problem is, the BufferedWaveProvider will have A lot more "audio time" compared to...
View ArticleNew Post: Spectrum Analyzer FFT
I suppose in its current form I could hack the values or lookup table so as to move the frequency range to the right in the bar range of something like 1-1-1-1-1-2-2-3-3-4-4-4-5-6-8-8 but I'd rather do...
View Article