giuliomoro There are basic filter design capabilities, see here for an example: https://github.com/BelaPlatform/Bela/blob/dev/examples/Audio/telephone-filter/render.cpp Here is a simple feedforwad compressor: https://github.com/BelaPlatform/Bela/tree/dev/examples/Multichannel/sidechain-ducker You'll see it's pretty vanilla C++, so you could import your DSP libraries of choice if needed.
TheMyth I want to have designated eq settings by name. What would be the best way to save each setting? IS there a format that is easy for bela to understand or would I create my own format parser?
giuliomoro If you have something simple, like KEY=value pairs, you can use these https://docs.bela.io/namespaceConfigFileUtils.html , or json otherwise.