AndrewBelt / HelloDAW

Audio plugin boilerplate code built with the command line and Makefiles
32 stars 1 forks source link

HelloDAW

HelloDAW is a collection of boilerplate audio plugins for multiple formats, implementing a single low-level standard, built with Makefiles and the terminal.

It's like the "Hello, world!" of DAW plugins. Actually, it's like TodoMVC, except with audio plugin formats instead of JavaScript frameworks.

Most importantly, this project attempts to reduce the time to build your first plugin from hours of frustration to hopefully 2 minutes (git clone ..., cd HelloDAW/..., read README.md, and make).

Includes

Wanted

Pull-requests are welcome and will be merged if I can follow your instructions and build the plugin with make.

The standard

Each plugin project is very simple and does nothing except prove that it works.

The plugin should be loadable in a plugin host (e.g. DAW) capable of loading its format. The plugin should feature

When running, the plugin should implement the following I/O.

The project should have a single Makefile and should be built by running make in the project directory. No IDEs like Xcode or Visual Studio should be used if possible.

Instructions should be provided in a README.md file for setting up the development environment and acquiring relevant SDK files.

Usage

Each HelloDAW project attempts to obtain a low-level starting point using each plugin's SDK.

This is great for forking and writing your own plugin if you prefer simple and low-level over complex and convenient.

The goal of HelloDAW is to work out of the box. If the build breaks for you, create an issue with all relevant information.

License

All code and documentation in this repository is released into the public domain (CC0). No credit is needed, but it would be nice to hear if you've released a plugin with help from this project.

However, note that plugin SDKs typically have more restrictive licenses, but they are not included in this repository.