So is there still an audio library that works with βclearβ sound from the outside?
Yes, there is one: https://cscore.codeplex.com
According to EqualizerSample, you can use the equalizer as follows:
using CSCore; using CSCore.Codecs; using CSCore.SoundOut; using CSCore.Streams; using System; using System.Threading; ... private static void Main(string[] args) { const string filename = @"C:\Temp\test.mp3"; EventWaitHandle waitHandle = new AutoResetEvent(false); try {
You can adjust the equalizer to whatever you want. And since it works 100% in real time, all changes are instantly applied. If necessary, it is possible to access the change of each channel separately.
source share