2013-01-29 19:26:36 -05:00
|
|
|
---
|
|
|
|
layout: default
|
2013-01-31 12:21:18 -05:00
|
|
|
title: Working With Plugins
|
2013-01-29 19:26:36 -05:00
|
|
|
---
|
|
|
|
|
|
|
|
|
2013-03-05 09:44:24 -05:00
|
|
|
|
2014-02-05 13:31:58 -05:00
|
|
|
<p><dfn>Plugins</dfn> are bits of software that get loaded by Ardour in order to:</p>
|
2013-01-29 19:26:36 -05:00
|
|
|
<ul>
|
2013-03-05 09:44:24 -05:00
|
|
|
<li>Create various audio or MIDI effects
|
|
|
|
</li>
|
|
|
|
<li>Generate audio by functioning as "software instruments"
|
|
|
|
</li>
|
2013-01-29 19:26:36 -05:00
|
|
|
</ul>
|
2013-03-05 09:44:24 -05:00
|
|
|
|
|
|
|
<p>Ardour does not come with any built-in signal processors of its own
|
2017-02-02 11:03:18 -05:00
|
|
|
(other than volume faders) but does ship with a small group of
|
|
|
|
plugins starting at Ardour 5.0. The shipped plugins are listed as authored by "Ardour Team"
|
|
|
|
and named with "a-" as the start of the name (Like a-EQ) or Authored by
|
|
|
|
"Ardour LUA Task Force" in which case they are example (but still useful)
|
|
|
|
LUA scripts. The included plugins are LV2 or LUA scripts and use
|
|
|
|
Ardour's generic GUI. They work on all supported platforms so that
|
|
|
|
projects started on one platform will sound the same on another platform
|
|
|
|
if they use just these plugins or other plugins that
|
|
|
|
are cross platform.
|
|
|
|
They are written by 3rd parties, though we do provide <a href="/working-with-plugins/getting-plugins/">some
|
2013-06-07 00:07:23 -04:00
|
|
|
information on how to get them</a>.
|
2013-03-05 09:44:24 -05:00
|
|
|
</p>
|
|
|
|
|
2017-02-02 11:03:18 -05:00
|
|
|
<h4>
|
2013-03-05 09:44:24 -05:00
|
|
|
Ardour supports a variety of different plugin standards:
|
2017-02-02 11:03:18 -05:00
|
|
|
</h4>
|
2013-01-29 19:26:36 -05:00
|
|
|
<dl class="narrower-table">
|
|
|
|
|
2014-02-05 13:31:58 -05:00
|
|
|
<dt><abbr title="Linux Audio Developers' Simple Plugin API">LADSPA</abbr></dt>
|
|
|
|
<dd>An early, simple, lightweight plugin <abbr title="Application
|
|
|
|
Programming Interface">API</abbr>, audio effects only,
|
2013-03-05 09:44:24 -05:00
|
|
|
plugins have no editors/GUI of their own (Ardour provides one, however).</dd>
|
2014-02-05 13:31:58 -05:00
|
|
|
<dt><abbr title="LADSPA Version 2">LV2</abbr></dt>
|
|
|
|
<dd>An extensible, full-featured plugin API, audio and <abbr
|
|
|
|
title="Musical Instrument Digital Interface">MIDI</abbr>, plugins can provide their
|
2017-02-02 11:03:18 -05:00
|
|
|
own <abbr title="Graphical User Interface">GUI</abbr>s but may use the
|
|
|
|
one Ardour provides instead.</dd>
|
2014-02-05 13:31:58 -05:00
|
|
|
<dt><abbr title="Audio Unit">AU</abbr></dt>
|
2013-03-05 09:44:24 -05:00
|
|
|
<dd>OS X only, full featured, audio and MIDI, plugins can provide their own GUI</dd>
|
|
|
|
|
2015-06-12 13:04:58 -04:00
|
|
|
<dt><abbr title="Virtual Studio Technology">VST</abbr></dt>
|
2015-06-12 13:09:52 -04:00
|
|
|
<dd>Plugins using Steinberg's VST plugin standard. Varies by platform:
|
|
|
|
<dl>
|
|
|
|
<dt>on Linux</dt><dd>(native) Linux VST plugins fully supported (VST2.4)</dd>
|
2015-06-12 13:10:47 -04:00
|
|
|
<dt>on Windows</dt><dd>(native) Windows VST plugins fully supported (VST2.4)</dd>
|
2017-02-02 11:03:18 -05:00
|
|
|
<dt>on OS X</dt><dd>(native) macOS VST plugins fully supported (VST2.4) since Ardour 5.5</dd>
|
2015-06-12 13:09:52 -04:00
|
|
|
</dl>
|
|
|
|
</dd>
|
2015-06-12 13:04:58 -04:00
|
|
|
|
|
|
|
<dt>Windows VST Plugins on Linux</dt>
|
2015-06-12 13:09:52 -04:00
|
|
|
<dd>VST plugins for Windows, but being used on Linux. <em>Not
|
2017-01-03 12:03:08 -05:00
|
|
|
supported by normal builds of Ardour. <a href="/working-with-plugins/windows-vst-support/">Read
|
2013-03-05 09:44:24 -05:00
|
|
|
more...</a></em>
|
|
|
|
</dd>
|
|
|
|
</dl>
|
|
|
|
|
|
|
|
<h2>Adding/Removing/Copying Plugins</h2>
|
2013-01-29 19:26:36 -05:00
|
|
|
|
2013-03-05 09:44:24 -05:00
|
|
|
<p>Within Ardour, plugins are just another type
|
2014-02-05 13:31:58 -05:00
|
|
|
of <dfn>Processor</dfn> and so the techniques for
|
2013-03-05 09:44:24 -05:00
|
|
|
adding/removing/copying/moving processors apply to plugins as
|
|
|
|
well. These techniques are covered on
|
2017-01-03 12:03:08 -05:00
|
|
|
the <a href="/working-with-plugins/processor-box/">Processor
|
2013-03-05 09:44:24 -05:00
|
|
|
Box</a> page.</p>
|
2013-01-29 19:26:36 -05:00
|
|
|
|
|
|
|
{% children %}
|