Since a few days, I am trying to create an equalizer using C#. Seen NAudio quite a lot time, but I could not find any working equalizer which would work with naudio. Now after a few days, I am finally here @stackoverflow and hopefully, you know a way to create an equalizer using c#.
PS: I've also tried out the System.Media.SoundPlayer. But that SoundPlayer does not even support anything that has to do with dsp. So is there another audio library which works with "pure" audio outside?
Yes there is one: https://cscore.codeplex.com
According to the EqualizerSample, you can use the equalizer like that:
You can configure the equalizer to what ever you want. And since it runs 100% in realtime, all changes are getting applied instantly. If needed, there is also a possiblity to access modify each channel separately.