NWaves icon indicating copy to clipboard operation
NWaves copied to clipboard

.NET DSP library with a lot of audio processing functions

Results 15 NWaves issues
Sort by recently updated
recently updated
newest added

This update provides 2 new functions for most audio effects: 1) public bool ProcessSampleBuffer(in IntPtr sampleBuffer, in int Channel, in int nChannels, in int frameCount) - allows unmanaged audio buffers...

First of all, thanks for the great library. I'm having an issue with resampling using a bandpass FIR filter, here is my Resample configuration: ``` public static float[] ResampleSignalBandpass(float[] data,...

![logos](https://github.com/ar1st0crat/NWaves/blob/master/assets/logo/candidates.png?raw=true)

I have a rather stupid question, but can't get my head around it: I have given zeros and poles (also a k value for gain correction) from an analog filter....

Fix to allow parsing WAV files which use an Extension chunk to describe PCM audio formats greater than 16-bit. Microsoft states that any WAV file with a Bit Depth of...

I am trying to resample from 44100 to 16000 `wav` audio bytes in realtime using `NWaves` but the resulting audio is noisy and broken Could someone provide an example on...

The methods to compute power/magnitude spectrum are missing from FFT64 and RealFFT/64 classes.

Probably very low priority, here there's a comparison that's throwing a compiler warning WaveFile.cs @ line 134: ``` if (waveFmt.AudioFormat == 0xFFFE) { waveFmt.AudioFormat = fmtSubFormatCode; } ``` My guess...