Skip to content

DaisySP

https://raw.githubusercontent.com/electro-smith/daisysp/master/resources/assets/banner.png

DaisySP • A Powerful DSP Library in C++

https://github.com/electro-smith/DaisySP/workflows/Build/badge.svghttps://github.com/electro-smith/DaisySP/workflows/Style/badge.svghttps://github.com/electro-smith/DaisySP/workflows/Documentation/badge.svghttps://img.shields.io/discord/1037767234803740694?logo=discord&label=Discordhttps://img.shields.io/badge/chat-daisy%20forum-orangehttps://img.shields.io/badge/license-MIT-yellow

DaisySP is an open-source DSP (Digital Signal Processing) library that provides a comprehensive collection of modular components for creating audio software across various contexts, facilitating the development of high-quality and customizable audio applications.

📱 Applications

✨ Features

🚀 Getting Started

  • Get the source: git clone [https://github.com/electro-smith/DaisySP](https://github.com/electro-smith/DaisySP)
  • Navigate to the DaisySP repo: cd DaisySP
  • Build the library: make
  • Make some noise with the example programs!

👨‍💻 Code Example

#include "daisysp.h"

static daisysp::OnePole flt;
static daisysp::Oscillator osc, lfo;
float saw, freq, output;

for(size_t i = 0; i < size; i++)
{
  freq = lfo.Process();
  saw = osc.Process();

  flt.SetFrequency(freq);
  output = flt.Process(saw);

  out[i] = output;
}

❤️ Community

Connect with other users and developers:

🏆 Contributors

Thank you to all of the awesome people who have given their time and effort to this project!

https://contrib.rocks/image?repo=electro-smith/DaisySP

Made with contrib.rocks.

✍️ Contributing

Here are some ways that you can get involved:

  • Proof read the documentation and suggest improvements
  • Test existing functionality and make issues
  • Make new DSP modules. See issues labeled "feature"
  • Port existing DSP modules from other open source projects (MIT). See issues labeled "port"
  • Fix problems with existing modules. See issues labeled "bug" and/or "polish"

Before working on code, please check out our Style Guide.

⚠️ License

DaisySP uses the MIT license.

It can be used in both closed source and commercial projects, and does not provide a warranty of any kind.

For the full license, read the LICENSE file in the root directory.


Updated on 2024-01-03 at 19:38:47 +0000