You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A high level library for Digital Signal Processing in D with a focus on audio.
I am not an expert on DSP by any means. Most of the designs for these plugins are ones that I have found and compiled from various books and websites.
I have many people to thank for doing the math and work that makes it possible for someone like me to implement and use these complex equations.
Many of these effects are based on designs from Designing Audio Effect Plug-Ins in C++
Another important source is MusicDSP.org
Disclaimer
This package is no longer actively maintained and should only be used as a reference.
I've personally pivoted to using Faust as the backend for any plugins I develop and intend to eventually replace all of the Ddsp code I use with it. The main reason is that Faust has a massive library of functions that I could never hope to replicate. Faust is also highly efficient and quick to develop with since it is designed specifically for signal processing.
If you are interested in seeing how to use Faust as the backend for a Dplug plugin, see Dplug Faust Example
Ddsp depends on dplug:core for use of it's @nogc capabilities. The D Runtime is only used for testing purposes within the library. This is to make it compatible with dplug but it can be used in any D framework/application.
Many more components are planned to be added soon.
Reverb
Modulated Filter
About
A library for Digital Signal Processing in D with a focus on audio