Difference between revisions of "Creating Audio Plugins"

From MOD Wiki
Jump to navigation Jump to search
(15 intermediate revisions by the same user not shown)
Line 1: Line 1:
A plugin is a software extension that adds new features to an existing application. Similarly, an audio plugin can add or enhance audio-related functionality to a device (e.g. MOD Duo). Such functionality may include digital signal processing, sound synthesis or MIDI data processing[1].
+
This page describes the process of creating an audio plugin for MOD.<br>
 
+
The idea of this page is not to go deep into any plugin standards but to show the options you have when creating your own plugin, guide you through the appropriate documentation according the method you choose and finally show how to upload and test it on your device.
== External references ==
 
 
 
There are plenty of documentation and guides on how to create LV2 plugins in the web.
 
 
 
Drobilla has created a page with lots of useful links and references that can help you in the process of creating a LV2 plugin. We highly recommend you to have a look.
 
 
 
[https://github.com/drobilla/lv2/wiki Drobilla's LV2 reference page]
 
 
 
== LV2 standard ==
 
 
 
MOD devices run [http://lv2plug.in/ LV2 plugins] internally. This means that if you want to create your own plugin for using with the MOD, you will need to build an LV2 plugin. LV2 is an open-source plugin specification designed for audio applications which is powerful and extensible.
 
 
 
There are many good reasons why LV2 is the best choice as the audio plugin standard for the MOD devices.
 
Most of them gracefully explained [http://lv2plug.in/pages/why-lv2.html in this page] of the LV2 website.
 
 
 
Thanks to the extensibility and the bundle concept which LV2 provides we were able to create beautiful HTML/CSS interfaces for the plugins present in the MOD devices.
 
 
 
== Creating plugins ==
 
 
 
The idea of this page is not to go deep into the LV2 standard but to show the options you have when creating your own plugin, guide you through the appropriate documentation according the method you choose and finally show how to upload and test it on your device.
 
  
 
Bellow are listed the topics that you might need to know in order to create audio plugins for MOD devices.
 
Bellow are listed the topics that you might need to know in order to create audio plugins for MOD devices.
Line 28: Line 8:
 
* Basic math
 
* Basic math
  
Note that LV2 standard is not listed as requirement because you don't need to know it if you are using Max gen~.
+
We assume that you know what an audio plugin is and how they might generally work. If not, see the [https://en.wikipedia.org/wiki/Audio_plug-in Wikipedia page on audio plugins].
  
There are 3 ways to create an LV2 plugin:
+
== Creating plugins ==
 +
 
 +
There are 3 ways to create an audio plugin:
  
 
* Coding everything from scratch
 
* Coding everything from scratch
* Using a framework or high level language (e.g.: DPF, Faust)
+
* Using a framework or high level language (e.g.: DPF, Faust, JUCE)
* Using visual programming software (e.g.: Max Gen~)
+
* Using visual programming software (e.g.: MAX Gen~, PureData)
  
Regardless the option you choose it's highly recommended that you use Linux (preferable) or Mac OS for development. Not only all MOD team developers use Linux but most of the LV2 developers does as well. In other words this means that almost all documentation you will find assumes that you are using Linux and in the case you need to ask for support it'll be much easier.
+
Regardless of the option you choose it's highly recommended that you use Linux or macOS for development.<br>
 +
Not only all MOD team developers use Linux but most of the LV2 developers do as well.<br>
 +
In other words this means that almost all documentation you will find assumes that you are using Linux so in the case you need to ask for support it'll be much easier.
  
 
=== From scratch ===
 
=== From scratch ===
  
The first option, coding everything from scratch, is the hardest one if you are new to programming. Here we will need to know C or C++ to code the plugins and also read the LV2 documentation and examples. Although the learning curve is steep (seeing that you'll need to learn programming first) that's a good choice if you want full control of what you're doing and probably it's the best choice to write well performing plugins.
+
The first option, coding everything from scratch, is the hardest one if you are new to programming.<br>
 +
Here we will need to know C or C++ to code the plugins and also read the LV2 documentation and examples.<br>
 +
Although the learning curve is steep (seeing that you'll need to learn programming first) that's a good choice if you want full control of what you're doing and probably it's the best choice to write well performing plugins.
  
 
What to learn:
 
What to learn:
  
 
* C/C++ language
 
* C/C++ language
* LV2 standard
+
* LV2 plugin standard
 +
 
 +
See our [[LV2]] page for more information on how the LV2 plugin standard is integrated in MOD.<br>
 +
LV2 is described in more detail a bit below.
 +
 
 +
=== Framework / High Level Language ===
  
To learn about the LV2 standard start reading this [blog post http://harryhaaren.blogspot.com.br/2012/06/writing-lv2-plugins-lv2-overview.html] by Harry Van Haaren.
+
The second option works best if you prefer to use more high-level stuff for programming instead of going into details of a plugin standard.<br>
 +
This means instead of needing to understand very specific concepts of LV2 (that do not always translate well to other plugin standards) you code your plugin in a more generic way.<br>
 +
You trade off special features (like multiple MIDI inputs) for an easier initial learning curve.<br>
 +
As a bonus, many of these frameworks also support/export more than LV2 so you will be getting additional VST2/3 compatibility for free.
 +
 
 +
TODO: Juce and [https://github.com/DISTRHO/DPF DISTRHO Plugin Framework (DPF)], Examples: there are plugins done using DPF, need to find out)
 +
 
 +
TODO: development environment
  
[Programming LV2 Plugins Book http://lv2plug.in/book/] from David Robillard. It aims to explain the LV2 by using examples instead of API documentation.
+
=== Visual Programming ===
  
TODO: short explanation of TTL files and links to examples and/or documentation.
+
If you do not want to do any coding but still want to make your own plugins, a visual programming interface is an option.<br>
 +
This typically consists of an application providing a modular environment to connect different blocks together, and exporting such projects into existing "template plugins" that generate a real plugin based on this exported data.
  
TODO: development environment setup (docker only?)
+
The most commonly used at the moment is [[Max_gen~|MAX Gen~]].<br>
 +
'''SHIRO''' and '''WOV''' are examples of plugins created on this environment, with only the GUI made externally.
  
=== Framework / High Level Language ===
+
Other solutions exist, but they are still work in progress and have not been integrated yet.<br>
 +
Look around in [https://forum.moddevices.com/ the forums] to get an idea of their current state.
  
TODO: Juce and [https://github.com/DISTRHO/DPF DISTRHO Plugin Framework (DPF)], Examples: there are plugins done using DPF, need to find out)
+
== LV2 standard ==
  
TODO: development environment
+
MOD devices run [http://lv2plug.in/ LV2 plugins] internally.<br>
 +
This means that if you want to create your own plugin from scratch to work with a MOD unit, you will need to build an LV2 plugin.<br>
 +
LV2 is an open-source, liberally-licensed audio plugin specification designed which is powerful and extensible.
  
 +
There are many good reasons why LV2 is the best choice as the audio plugin standard for the MOD devices.<br>
 +
Most of them gracefully explained [http://lv2plug.in/pages/why-lv2.html in this page] of the LV2 website.
  
=== Visual Programming ===
+
See our [[LV2]] page for more information on how LV2 is integrated in MOD.
  
TODO: Max/MSP (MAX Gen~) Examples: shiro plugins
+
=== External references ===
  
TODO: Puredata (Camomile) Examples?
+
There are plenty of documentation and guides on how to create LV2 plugins in the web.
  
TODO: development environment
+
The [https://github.com/lv2/lv2/wiki LV2 GitHub wiki] has lots of useful links and references that can help you in the process of creating a LV2 plugin.
 +
We highly recommend you to have a look.
  
 +
To learn about the LV2 standard start reading this [blog post http://harryhaaren.blogspot.com.br/2012/06/writing-lv2-plugins-lv2-overview.html] by Harry Van Haaren.
  
[1] https://en.wikipedia.org/wiki/Audio_plug-in
+
[Programming LV2 Plugins Book http://lv2plug.in/book/] from David Robillard. It aims to explain the LV2 by using examples instead of API documentation.

Revision as of 20:58, 24 October 2021

This page describes the process of creating an audio plugin for MOD.
The idea of this page is not to go deep into any plugin standards but to show the options you have when creating your own plugin, guide you through the appropriate documentation according the method you choose and finally show how to upload and test it on your device.

Bellow are listed the topics that you might need to know in order to create audio plugins for MOD devices.

  • Digital signal processing (DSP)
  • Programming
  • Basic math

We assume that you know what an audio plugin is and how they might generally work. If not, see the Wikipedia page on audio plugins.

Creating plugins

There are 3 ways to create an audio plugin:

  • Coding everything from scratch
  • Using a framework or high level language (e.g.: DPF, Faust, JUCE)
  • Using visual programming software (e.g.: MAX Gen~, PureData)

Regardless of the option you choose it's highly recommended that you use Linux or macOS for development.
Not only all MOD team developers use Linux but most of the LV2 developers do as well.
In other words this means that almost all documentation you will find assumes that you are using Linux so in the case you need to ask for support it'll be much easier.

From scratch

The first option, coding everything from scratch, is the hardest one if you are new to programming.
Here we will need to know C or C++ to code the plugins and also read the LV2 documentation and examples.
Although the learning curve is steep (seeing that you'll need to learn programming first) that's a good choice if you want full control of what you're doing and probably it's the best choice to write well performing plugins.

What to learn:

  • C/C++ language
  • LV2 plugin standard

See our LV2 page for more information on how the LV2 plugin standard is integrated in MOD.
LV2 is described in more detail a bit below.

Framework / High Level Language

The second option works best if you prefer to use more high-level stuff for programming instead of going into details of a plugin standard.
This means instead of needing to understand very specific concepts of LV2 (that do not always translate well to other plugin standards) you code your plugin in a more generic way.
You trade off special features (like multiple MIDI inputs) for an easier initial learning curve.
As a bonus, many of these frameworks also support/export more than LV2 so you will be getting additional VST2/3 compatibility for free.

TODO: Juce and DISTRHO Plugin Framework (DPF), Examples: there are plugins done using DPF, need to find out)

TODO: development environment

Visual Programming

If you do not want to do any coding but still want to make your own plugins, a visual programming interface is an option.
This typically consists of an application providing a modular environment to connect different blocks together, and exporting such projects into existing "template plugins" that generate a real plugin based on this exported data.

The most commonly used at the moment is MAX Gen~.
SHIRO and WOV are examples of plugins created on this environment, with only the GUI made externally.

Other solutions exist, but they are still work in progress and have not been integrated yet.
Look around in the forums to get an idea of their current state.

LV2 standard

MOD devices run LV2 plugins internally.
This means that if you want to create your own plugin from scratch to work with a MOD unit, you will need to build an LV2 plugin.
LV2 is an open-source, liberally-licensed audio plugin specification designed which is powerful and extensible.

There are many good reasons why LV2 is the best choice as the audio plugin standard for the MOD devices.
Most of them gracefully explained in this page of the LV2 website.

See our LV2 page for more information on how LV2 is integrated in MOD.

External references

There are plenty of documentation and guides on how to create LV2 plugins in the web.

The LV2 GitHub wiki has lots of useful links and references that can help you in the process of creating a LV2 plugin. We highly recommend you to have a look.

To learn about the LV2 standard start reading this [blog post http://harryhaaren.blogspot.com.br/2012/06/writing-lv2-plugins-lv2-overview.html] by Harry Van Haaren.

[Programming LV2 Plugins Book http://lv2plug.in/book/] from David Robillard. It aims to explain the LV2 by using examples instead of API documentation.