Skip to content

Instantly share code, notes, and snippets.

@mxmilkiib
Created March 15, 2020 22:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mxmilkiib/387975e5d1e58fff93e7ea99682a7cae to your computer and use it in GitHub Desktop.
Save mxmilkiib/387975e5d1e58fff93e7ea99682a7cae to your computer and use it in GitHub Desktop.
lv2core.xml
<?xml version="1.0" encoding="utf-8" ?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:ns0="http://lv2plug.in/ns/lv2core#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#">
<rdfs:Class rdf:about="http://lv2plug.in/ns/lv2core#Specification">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://usefulinc.com/ns/doap#Project"/>
<ns0:documentation>
&lt;p&gt;An LV2 specification (i.e. this specification, or an LV2 extension).&lt;/p&gt;
&lt;p&gt;Specification data, like plugin data, is distributed in bundles
so hosts may discover &lt;em&gt;all&lt;/em&gt; present LV2 data.&lt;/p&gt;
</ns0:documentation>
</rdfs:Class>
<rdf:Property rdf:about="http://lv2plug.in/ns/lv2core#documentation">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/>
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<rdfs:label>documentation</rdfs:label>
<rdfs:seeAlso rdf:resource="http://www.w3.org/TR/xhtml-basic/"/>
<ns0:documentation>
&lt;p&gt;Relates a Resource to documentation markup. The value of this property
MUST be a string literal which is a valid XHTML Basic 1.1 fragment suitable
for use as the content of the &amp;lt;body&amp;gt; element. This can be used by
hosts to provide rich online documentation or by tools to generate external
documentation pages. The standard language tagging facility of RDF can be
used to provide multi-lingual documentation.&lt;/p&gt;
&lt;p&gt;XHTML Basic is a W3C Recommendation which defines a basic subset of XHTML
intended to be reasonable to implement with limited resources (e.g. on embedded
devices). See &lt;a href=&quot;http://www.w3.org/TR/xhtml-basic/#s_xhtmlmodules&quot;
&gt;XHTML Basic, Section 3&lt;/a&gt; for a list of legal tags.&lt;/p&gt;
</ns0:documentation>
</rdf:Property>
<owl:Ontology rdf:about="http://lv2plug.in/ns/lv2core">
<rdfs:seeAlso rdf:resource="http://lv2plug.in/ns/lv2.h"/>
<rdfs:seeAlso rdf:resource="http://lv2plug.in/ns/lv2_util.h"/>
<rdfs:seeAlso rdf:resource="http://lv2plug.in/ns/lv2core.doap.ttl"/>
<ns0:documentation>
&lt;p&gt;LV2 is an interface for writing audio processors, or &lt;q&gt;plugins&lt;/q&gt;, in
C/C++ which can be dynamically loaded into many applications, or &lt;q&gt;hosts&lt;/q&gt;.
This &lt;q&gt;core&lt;/q&gt; specification is simple and minimal, but is designed so that
&lt;q&gt;extensions&lt;/q&gt; can be defined to add more advanced features, making it
possible to implement nearly any feature imaginable.&lt;/p&gt;
&lt;p&gt;LV2 maintains a strong distinction between &lt;q&gt;code&lt;/q&gt; and &lt;q&gt;data&lt;/q&gt;.
Plugin code is in a shared library, while data is in a companion data file
written in &lt;a href=&quot;http://www.w3.org/TeamSubmission/turtle/&quot;&gt;Turtle&lt;/a&gt;.
Code, data, and any other resources (e.g. waveforms) are shipped together in a
&lt;q&gt;bundle&lt;/q&gt; directory. The code contains only the executable portions of the
plugin which inherently &lt;em&gt;must&lt;/em&gt; be written in code. All other data is
provided in the data file(s). This makes plugin data flexible and extensible,
and allows the host to do everything but run the plugin without loading or
executing any code. Among other advantages, this makes hosts more robust
(broken plugins can't crash a host during discovery) and allows generic tools
and non-C programs to work with LV2 data. LV2 itself and extensions are
distributed in a similar way.&lt;/p&gt;
&lt;p&gt;An LV2 plugin library is suitable for dynamic loading (e.g. via
&lt;code&gt;dlopen()&lt;/code&gt;) and provides one or more plugin descriptors via
&lt;code&gt;lv2_descriptor()&lt;/code&gt; or &lt;code&gt;lv2_lib_descriptor()&lt;/code&gt;. These can
be instantiated to create plugin &lt;q&gt;instances&lt;/q&gt;, which can be run directly on
data or connected together to perform advanced signal processing tasks.&lt;/p&gt;
&lt;p&gt;Plugins communicate via &lt;q&gt;ports&lt;/q&gt;, which can transmit any type of data.
Data is processed by first &lt;q&gt;connecting&lt;/q&gt; each port to a buffer, then
repeatedly calling a plugin's &lt;code&gt;run()&lt;/code&gt; method to process blocks of
data.&lt;/p&gt;
&lt;p&gt;This core specification defines two types of port, equivalent to those in &lt;a
href=&quot;http://www.ladspa.org/&quot;&gt;LADSPA&lt;/a&gt;: lv2:ControlPort and lv2:AudioPort.
Audio ports contain arrays with one &lt;code&gt;float&lt;/code&gt; element per sample,
allowing a block of audio to be processed in a single call to
&lt;code&gt;run()&lt;/code&gt;. Control ports contain single &lt;code&gt;float&lt;/code&gt; values,
which are fixed and valid for the duration of the call to &lt;code&gt;run()&lt;/code&gt;.
Thus the &lt;q&gt;control rate&lt;/q&gt; is determined by the block size, which is
controlled by the host (and not necessarily constant).&lt;/p&gt;
&lt;h3&gt;Threading Rules&lt;/h3&gt;
&lt;p&gt;To faciliate use in multi-threaded programs, LV2 functions are partitioned
into several threading classes:&lt;/p&gt;
&lt;table&gt;
&lt;tr&gt;&lt;th&gt;Discovery Class&lt;/th&gt;
&lt;th&gt;Instantiation Class&lt;/th&gt;
&lt;th&gt;Audio Class&lt;/th&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;lv2_descriptor()&lt;/td&gt;
&lt;td&gt;LV2_Descriptor::instantiate()&lt;/td&gt;
&lt;td&gt;LV2_Descriptor::run()&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;lv2_lib_descriptor()&lt;/td&gt;
&lt;td&gt;LV2_Descriptor::cleanup()&lt;/td&gt;
&lt;td&gt;LV2_Descriptor::connect_port()&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;LV2_Descriptor::extension_data()&lt;/td&gt;
&lt;td&gt;LV2_Descriptor::activate()&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;/td&gt;&lt;td&gt;LV2_Descriptor::deactivate()&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;
&lt;p&gt;The rules that hosts MUST follow are:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;When any function is running for a plugin instance,
no other function in the same class may run for that instance.&lt;/li&gt;
&lt;li&gt;When a &lt;em&gt;Discovery&lt;/em&gt; function is running,
no other functions in the same shared object file may run.&lt;/li&gt;
&lt;li&gt;When an &lt;em&gt;Instantiation&lt;/em&gt; function is running for a plugin instance,
no other functions for that instance may run.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Any simultaneous calls that are not explicitly forbidden by these rules are
allowed. For example, a host may call &lt;code&gt;run()&lt;/code&gt; for two different
plugin instances simultaneously.&lt;/p&gt;
&lt;p&gt;Plugin functions in any class MUST NOT manipulate any state which might
affect other plugin or host code, e.g. by using non-reentrant global
functions.&lt;/p&gt;
&lt;p&gt;Extensions to this specification which add new functions MUST declare in
which of these classes the functions belong, define new classes for them, or
otherwise precisely describe their threading rules.&lt;/p&gt;
</ns0:documentation>
</owl:Ontology>
<rdfs:Class rdf:about="http://lv2plug.in/ns/lv2core#PluginBase">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label>Plugin Base</rdfs:label>
<ns0:documentation>
&lt;p&gt;An abstract plugin-like resource that MAY not actually be an LV2 plugin
(e.g. may not actually have a plugin binary).&lt;/p&gt;
&lt;p&gt;PluginBase SHOULD be used as a base type for any resource that may have
ports or otherwise mimic the structure of a Plugin (e.g. a preset), since
hosts and other tools already &lt;q&gt;understand&lt;/q&gt; this structure.&lt;/p&gt;
</ns0:documentation>
</rdfs:Class>
<rdfs:Class rdf:about="http://lv2plug.in/ns/lv2core#Plugin">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://lv2plug.in/ns/lv2core#PluginBase"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://usefulinc.com/ns/doap#name"/>
<owl:someValuesFrom rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral"/>
<rdfs:comment>A plugin MUST have at least one untranslated doap:name.</rdfs:comment>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<rdf:Property rdf:about="http://lv2plug.in/ns/lv2core#port">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:domain rdf:resource="http://lv2plug.in/ns/lv2core#PluginBase"/>
<rdfs:range rdf:resource="http://lv2plug.in/ns/lv2core#PortBase"/>
<rdfs:label>port</rdfs:label>
<rdfs:comment>A port (input or output) on this plugin.</rdfs:comment>
</rdf:Property>
</owl:onProperty>
<owl:allValuesFrom rdf:resource="http://lv2plug.in/ns/lv2core#Port"/>
<rdfs:comment>All ports on a plugin MUST be fully specified lv2:Port instances.</rdfs:comment>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label>Plugin</rdfs:label>
<ns0:documentation>
&lt;p&gt;The class which represents an LV2 plugin.&lt;/p&gt;
&lt;p&gt;To be discovered by hosts, plugins MUST explicitly have rdf:type lv2:Plugin
listed in their bundle's manifest, e.g.:&lt;/p&gt;
&lt;pre class=&quot;turtle-code&quot;&gt;
&amp;lt;http://example.org/my-plugin&amp;gt; a lv2:Plugin .
&lt;/pre&gt;
&lt;p&gt;Plugins SHOULD have a doap:license property whenever possible. The doap:name
property should be at most a few words in length using title capitalization,
e.g. &lt;q&gt;Tape Delay Unit&lt;/q&gt;. Use doap:shortdesc or doap:description for more
detailed descriptions.&lt;/p&gt;
</ns0:documentation>
</rdfs:Class>
<rdfs:Class rdf:about="http://lv2plug.in/ns/lv2core#PortBase">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label>Port Base</rdfs:label>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<rdf:Property rdf:about="http://lv2plug.in/ns/lv2core#symbol">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:label>symbol</rdfs:label>
<rdfs:range>
<rdfs:Datatype rdf:about="http://lv2plug.in/ns/lv2core#Symbol">
<owl:onDatatype rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<owl:withRestrictions>
<rdf:Description>
<rdf:first>
<rdf:Description>
<xsd:pattern>[_a-zA-Z][_a-zA-Z0-9]*</xsd:pattern>
</rdf:Description>
</rdf:first>
<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
</rdf:Description>
</owl:withRestrictions>
<rdfs:comment>A short restricted name used as a machine and human readable identifier.
The first character must be one of _, a-z or A-Z and subsequent characters can be from _, a-z, A-Z and 0-9. This is a valid C identifier, and compatible in most other contexts with restricted string identifiers (e.g. file paths).</rdfs:comment>
</rdfs:Datatype>
</rdfs:range>
<rdfs:range rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral"/>
<ns0:documentation>
&lt;p&gt;The value of this property MUST conform to the rules for lv2:Symbol, and
MUST NOT have a language tag.&lt;/p&gt;
&lt;p&gt;A symbol is a unique identifier with respect to the parent (e.g. a port's
symbol is a unique identifier with respect to its plugin). The plugin author
MUST change the plugin URI if a port symbol is changed or removed.&lt;/p&gt;
</ns0:documentation>
</rdf:Property>
</owl:onProperty>
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</owl:cardinality>
<rdfs:comment>A port MUST have exactly one lv2:symbol.</rdfs:comment>
</owl:Restriction>
</rdfs:subClassOf>
<ns0:documentation>
&lt;p&gt;Similar to lv2:PluginBase, an abstract port-like resource that MAY not
actually be a fully specified LV2 port. For example, this is used for preset
&quot;ports&quot; which do not specify an index.&lt;/p&gt;
</ns0:documentation>
</rdfs:Class>
<rdfs:Class rdf:about="http://lv2plug.in/ns/lv2core#Port">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label>Port</rdfs:label>
<rdfs:subClassOf rdf:resource="http://lv2plug.in/ns/lv2core#PortBase"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<rdf:Property rdf:about="http://lv2plug.in/ns/lv2core#name">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
<rdfs:label>name</rdfs:label>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:comment>A display name for labeling in a user interface. Unlike lv2:symbol this is unrestricted and may be translated. The lv2:name MUST NOT be used as an identifier.
This property is required for Ports, but MUST NOT be used by the host for port identification. The plugin author may change the values of this property without changing the Plugin URI.</rdfs:comment>
</rdf:Property>
</owl:onProperty>
<owl:minCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</owl:minCardinality>
<rdfs:comment>A port MUST have at least one lv2:name.</rdfs:comment>
</owl:Restriction>
</rdfs:subClassOf>
<ns0:documentation>
&lt;p&gt;The class which represents an LV2 port.&lt;/p&gt;
&lt;p&gt;All LV2 port descriptions MUST have a rdf:type that is one of lv2:Port
lv2:InputPort or lv2:OutputPort. Additionally there MUST be at least one other
rdf:type which more precisely describes type of the port
(e.g. lv2:AudioPort).&lt;/p&gt;
&lt;p&gt;Hosts that do not support a specific port class MUST NOT instantiate the
plugin, unless that port has the connectionOptional property set (in which case
the host can simply &lt;q&gt;connect&lt;/q&gt; that port to NULL). If a host is interested
in plugins to insert in a certain signal path (e.g. stereo audio), it SHOULD
consider all the classes of a port to determine which ports are most suitable
for connection (e.g. by ignoring ports with additional classes the host does
not recognize).&lt;/p&gt;
&lt;p&gt;A port has two identifiers: a (numeric) index, and a (textual) symbol.
The index can be used as an identifier at run-time, but persistent references
to ports (e.g. in a saved preset) MUST use the symbol. A symbol is guaranteed
to refer to the same port on all plugins with a given URI. An index does NOT
necessarily refer to the same port on all plugins with a given URI (i.e. the
index for a port may differ between plugin binaries).&lt;/p&gt;
</ns0:documentation>
</rdfs:Class>
<rdfs:Class rdf:about="http://lv2plug.in/ns/lv2core#InputPort">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://lv2plug.in/ns/lv2core#Port"/>
<rdfs:label>Input Port</rdfs:label>
<rdfs:comment>Ports of this type will be connected to a pointer to some value, which will be read by the plugin during their run method.</rdfs:comment>
</rdfs:Class>
<rdfs:Class rdf:about="http://lv2plug.in/ns/lv2core#OutputPort">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://lv2plug.in/ns/lv2core#Port"/>
<rdfs:label>Output Port</rdfs:label>
<rdfs:comment>Ports of this type will be connected to a pointer to some value, which will be written to by the plugin during their run method.</rdfs:comment>
</rdfs:Class>
<rdfs:Class rdf:about="http://lv2plug.in/ns/lv2core#ControlPort">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://lv2plug.in/ns/lv2core#Port"/>
<rdfs:label>Control Port</rdfs:label>
<ns0:documentation>
&lt;p&gt;Ports of this type will be connected to a pointer to a single value of C
type &lt;code&gt;float&lt;/code&gt;.&lt;/p&gt;
</ns0:documentation>
</rdfs:Class>
<rdfs:Class rdf:about="http://lv2plug.in/ns/lv2core#AudioPort">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://lv2plug.in/ns/lv2core#Port"/>
<rdfs:label>Audio Port</rdfs:label>
<ns0:documentation>
&lt;p&gt;Ports of this type will be connected to an array of length sample_count
with elements of C type &lt;code&gt;float&lt;/code&gt;.&lt;/p&gt;
</ns0:documentation>
</rdfs:Class>
<rdfs:Class rdf:about="http://lv2plug.in/ns/lv2core#CVPort">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://lv2plug.in/ns/lv2core#Port"/>
<rdfs:label>CV Port</rdfs:label>
<ns0:documentation>
&lt;p&gt;Ports of this type have the same buffer format as an lv2:AudioPort, except
the buffer represents audio-rate control data rather than audio. Like an
lv2:ControlPort, a CVPort SHOULD have properties describing its value
(e.g. lv2:minimum, lv2:maximum, and lv2:default), and may be presented to the
user as a control.&lt;/p&gt;
&lt;p&gt;It is generally safe to connect an audio output to a CV input, but not vice
versa. Hosts SHOULD take care to prevent data from a CVPort port from being
used as audio.&lt;/p&gt;
</ns0:documentation>
</rdfs:Class>
<rdf:Property rdf:about="http://lv2plug.in/ns/lv2core#project">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:range rdf:resource="http://usefulinc.com/ns/doap#Project"/>
<rdfs:label>project</rdfs:label>
<ns0:documentation>
&lt;p&gt;The project this is a component of.&lt;/p&gt;
&lt;p&gt;This property provides a way to group plugins and/or related resources. A
project may have useful metadata common to all plugins (such as homepage,
author, version history) which would be wasteful to list separately for each
plugin.&lt;/p&gt;
&lt;p&gt;Grouping via projects also allows users to find plugins in hosts by project,
which is often how they are remembered. For this reason, a project that
contains plugins SHOULD always have a doap:name. It is also a good idea for
each plugin and the project itself to have an lv2:symbol property, which allows
nice quasi-global identifiers for plugins, e.g. &lt;q&gt;myproj.superamp&lt;/q&gt; which
can be useful for display or fast user entry.&lt;/p&gt;
</ns0:documentation>
</rdf:Property>
<rdf:Property rdf:about="http://lv2plug.in/ns/lv2core#prototype">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:label>prototype</rdfs:label>
<ns0:documentation>
&lt;p&gt;The prototype to inherit properties from.&lt;/p&gt;
&lt;p&gt;This property can be used to &lt;q&gt;include&lt;/q&gt; common properties in several
descriptions. If a plugin has a prototype, then the host must load all the
properties for the prototype as if they were properties of the plugin. That
is, if &lt;code&gt;:plug lv2:prototype :prot&lt;/code&gt;, then for each triple &lt;code&gt;:prot
p o&lt;/code&gt;, the triple &lt;code&gt;:plug p o&lt;/code&gt; should be loaded.&lt;/p&gt;
&lt;p&gt;This facility is useful for distributing text-only plugins that rely on a
common binary, by referring to a prototype which is installed by the
corresponding software, along with the plugin binary.&lt;/p&gt;
</ns0:documentation>
</rdf:Property>
<rdf:Property rdf:about="http://lv2plug.in/ns/lv2core#minorVersion">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"/>
<rdfs:label>minor version</rdfs:label>
<ns0:documentation>
&lt;p&gt;The minor version of an LV2 Resource. This, along with lv2:microVersion, is
used to distinguish between different versions of the &lt;q&gt;same&lt;/q&gt; resource,
e.g. to load only the bundle with the most recent version of a plugin. An LV2
version has a minor and micro number with the usual semantics:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;The minor version MUST be incremented when backwards (but not
forwards) compatible additions are made, e.g. the addition of a port to a
plugin.&lt;/li&gt;
&lt;li&gt;The micro version is incremented for changes which do not affect
compatibility at all, e.g. bug fixes or documentation updates.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Note there is deliberately no major version; all versions with the same URI
are compatible by definition. Replacing a resource with a newer version of
that resource MUST NOT break anything. If a change violates this rule, then
the URI of the resource (which serves as the major version) MUST be
changed.&lt;/p&gt;
&lt;p&gt;Plugins and extensions MUST adhere to at least the following rules:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;All versions of a plugin with a given URI MUST have the &lt;q&gt;same&lt;/q&gt; set of
mandatory (i.e. not lv2:connectionOptional) ports with respect to lv2:symbol
and rdf:type. In other words, every port on a particular version is guaranteed
to exist on a future version with same lv2:symbol and at least those
rdf:types.&lt;/li&gt;
&lt;li&gt;New ports MAY be added without changing the plugin URI if and only if they
are lv2:connectionOptional and the minor version is incremented.&lt;/li&gt;
&lt;li&gt;The minor version MUST be incremented if the index of any port (identified
by its symbol) is changed.&lt;/li&gt;
&lt;li&gt;All versions of a specification MUST be compatible in the sense that an
implementation of the new version can interoperate with an implementation of
any previous version.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Anything that depends on a specific version of a plugin (e.g. a
serialisation that references ports by index) MUST refer to the plugin by both
URI and version. However, implementations should be tolerant and extensions
should be designed such that there is no need to do this (e.g. indices should
only be meaningful for a particular plugin &lt;em&gt;instance&lt;/em&gt; at run-time).&lt;/p&gt;
&lt;p&gt;When hosts discover several installed versions of a resource, they SHOULD
warn the user and load only the most recent version.&lt;/p&gt;
&lt;p&gt;An odd minor &lt;em&gt;or&lt;/em&gt; micro version, or minor version zero, indicates
that the resource is a development version. Hosts and tools SHOULD clearly
indicate this wherever appropriate. Minor version zero is a special case for
pre-release development of plugins, or experimental plugins that are not
intended for stable use at all. Hosts SHOULD NOT expect such a plugin to
remain compatible with any future version. If possible, hosts SHOULD hide such
plugins from users unless an &lt;q&gt;experimental&lt;/q&gt; option is enabled.&lt;/p&gt;
</ns0:documentation>
</rdf:Property>
<rdf:Property rdf:about="http://lv2plug.in/ns/lv2core#microVersion">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"/>
<rdfs:label>micro version</rdfs:label>
<ns0:documentation>
&lt;p&gt;The micro component of a Resource's version.&lt;/p&gt;
&lt;p&gt;Releases of plugins and extensions MUST be explicitly versioned. Correct
version numbers MUST always be maintained for any versioned resource that is
published. For example, after a release, if a change is made in the development
version in source control, the micro version MUST be incremented (to an odd
number) to distinguish this modified version from the previous release.&lt;/p&gt;
&lt;p&gt;This property describes half of a resource version. For detailed
documentation on LV2 resource versioning, see lv2:minorVersion.&lt;/p&gt;
</ns0:documentation>
</rdf:Property>
<rdf:Property rdf:about="http://lv2plug.in/ns/lv2core#binary">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:range rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfs:label>binary</rdfs:label>
<ns0:documentation>
&lt;p&gt;The binary of an LV2 resource. The value of this property must be a URI that
resolves to a shared library object (the actual type of this library is system
specific).&lt;/p&gt;
&lt;p&gt;This is a required property of a Plugin which MUST be included in the
bundle's manifest.ttl file. The lv2:binary of an lv2:Plugin is the shared
object containing the &lt;code&gt;lv2_descriptor()&lt;/code&gt; or
&lt;code&gt;lv2_lib_descriptor()&lt;/code&gt; function which can be used to access the
descriptor for that plugin. This property may be used similarly by extensions
to relate other resources to their implementations.&lt;/p&gt;
</ns0:documentation>
</rdf:Property>
<rdf:Property rdf:about="http://lv2plug.in/ns/lv2core#appliesTo">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:range rdf:resource="http://lv2plug.in/ns/lv2core#Plugin"/>
<rdfs:label>applies to</rdfs:label>
<ns0:documentation>
&lt;p&gt;Specifies that a resource is related to a plugin. This is primarily intended
for discovery purposes: bundles that describe resources that work with
particular plugins (e.g. presets or user interfaces) SHOULD use this predicate
in manifest.ttl to relate the resource to the applicable
plugin(s), e.g.:&lt;/p&gt;
&lt;pre class=&quot;turtle-code&quot;&gt;
&amp;lt;thing&amp;gt;
a ext:Thing ;
lv2:appliesTo &amp;lt;plugin&amp;gt; ;
rdfs:seeAlso &amp;lt;thing.ttl&amp;gt; .
&lt;/pre&gt;
&lt;p&gt;Particularly for large amounts of data, this is preferable to
extending the plugin description with rdfs:seeAlso since the host may choose
if/when to load the data, knowing that it describes an additional resource and
not the plugin itself.&lt;/p&gt;
</ns0:documentation>
</rdf:Property>
<rdf:Property rdf:about="http://lv2plug.in/ns/lv2core#index">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#unsignedInt"/>
<rdfs:label>index</rdfs:label>
<rdfs:comment>A non-negative zero-based 32-bit index.</rdfs:comment>
</rdf:Property>
<rdf:Property rdf:about="http://lv2plug.in/ns/lv2core#shortName">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
<rdfs:label>short name</rdfs:label>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:comment>A short display name for labeling in a user interface.
The same rules for port names apply here, with the exception that short names should not be longer than 16 characters.</rdfs:comment>
</rdf:Property>
<rdfs:Class rdf:about="http://lv2plug.in/ns/lv2core#Designation">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<rdfs:label>Designation</rdfs:label>
<ns0:documentation>
&lt;p&gt;The designation (or &lt;q&gt;assignment&lt;/q&gt;) of an input or output. A designation
is metadata that describes the meaning or role of data. By assigning a
designation to a port using lv2:designation, the port's content becomes
meaningful and can be used more intelligently by the host.&lt;/p&gt;
</ns0:documentation>
</rdfs:Class>
<rdfs:Class rdf:about="http://lv2plug.in/ns/lv2core#Channel">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://lv2plug.in/ns/lv2core#Designation"/>
<rdfs:label>Channel</rdfs:label>
<ns0:documentation>
&lt;p&gt;A specific channel, e.g. &lt;q&gt;left&lt;/q&gt; or &lt;q&gt;right&lt;/q&gt;. A channel may be
audio, or another type such as a MIDI control stream.&lt;/p&gt;
</ns0:documentation>
</rdfs:Class>
<rdfs:Class rdf:about="http://lv2plug.in/ns/lv2core#Parameter">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://lv2plug.in/ns/lv2core#Designation"/>
<rdfs:subClassOf rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<rdfs:label>Parameter</rdfs:label>
<ns0:documentation>
&lt;p&gt;A parameter, i.e. a recognized property. A parameter is a designation for a
control.&lt;/p&gt;
&lt;p&gt;A parameter defines the &lt;em&gt;meaning&lt;/em&gt; of a control (not the
&lt;em&gt;method&lt;/em&gt; of conveying its value). The standard way of exposing a plugin
parameter is via an lv2:ControlPort, which can be given a parameter designation
with lv2:designation. Other methods, such as setting dynamic parameters via
messages, are possible but not defined here.&lt;/p&gt;
</ns0:documentation>
</rdfs:Class>
<rdf:Property rdf:about="http://lv2plug.in/ns/lv2core#designation">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:range rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<rdfs:label>designation</rdfs:label>
<ns0:documentation>
&lt;p&gt;Indicates a channel or parameter designation.&lt;/p&gt;
&lt;p&gt;This property is used to give the port's contents a well-defined meaning.
For example, if a port has lv2:designation eg:gain, then the value of that port
represents the eg:gain of the plugin instance.&lt;/p&gt;
&lt;p&gt;Ports should be given designations whenever a well-defined designation
exists. This allows the host to act more intelligently and/or provide a more
effective user interface. For example, if the plugin has a BPM parameter, the
host may automatically set that parameter to the current tempo.&lt;/p&gt;
</ns0:documentation>
</rdf:Property>
<rdf:Property rdf:about="http://lv2plug.in/ns/lv2core#latency">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"/>
<rdfs:label>latency</rdfs:label>
<rdfs:comment>The latency introduced, in frames.</rdfs:comment>
</rdf:Property>
<rdf:Property rdf:about="http://lv2plug.in/ns/lv2core#freeWheeling">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
<rdfs:label>free-wheeling</rdfs:label>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#boolean"/>
<ns0:documentation>
&lt;p&gt;Whether or not processing is currently free-wheeling. If true, this means
that all processing is happening as quickly as possible, not in real-time.
When free-wheeling there is no relationship between the passage of real
wall-clock time and the passage of time in the data being processed (e.g. audio
frames).&lt;/p&gt;
</ns0:documentation>
</rdf:Property>
<rdf:Property rdf:about="http://lv2plug.in/ns/lv2core#enabled">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
<rdfs:label>enabled</rdfs:label>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#int"/>
<ns0:documentation>
&lt;p&gt;Whether or not processing is currently enabled, that is, not bypassed.&lt;/p&gt;
&lt;p&gt;If this value is greater than zero, the plugin processes normally. If this
value is zero, the plugin is expected to bypass all signals unmodified. The
plugin must provide a click-free transition between the enabled and disabled
(bypassed) states.&lt;/p&gt;
&lt;p&gt;Values less than zero are reserved for future use (such as click-free
insertion/removal of latent plugins), and should be treated like zero
(bypassed) by current implementations.&lt;/p&gt;
</ns0:documentation>
</rdf:Property>
<ns0:Channel rdf:about="http://lv2plug.in/ns/lv2core#control">
<rdfs:label>control</rdfs:label>
<ns0:documentation>
&lt;p&gt;The primary control channel. This should be used as the lv2:designation of
ports that are used to send commands and receive responses. Typically this
will be an event port that supports some protocol, e.g. MIDI or LV2 Atoms.&lt;/p&gt;
</ns0:documentation>
</ns0:Channel>
<rdfs:Class rdf:about="http://lv2plug.in/ns/lv2core#Point">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label>Point</rdfs:label>
<ns0:documentation>
&lt;p&gt;A Point describes an interesting value in a Port's range (much like a labeled
&lt;q&gt;notch&lt;/q&gt; on a physical knob).&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;A Point MUST have at least one rdfs:label which is a string.&lt;/li&gt;
&lt;li&gt;A Point MUST have exactly one rdf:value with a type that is compatible
with the type of the corresponding Port.&lt;/li&gt;
&lt;/ul&gt;
</ns0:documentation>
</rdfs:Class>
<rdfs:Class rdf:about="http://lv2plug.in/ns/lv2core#ScalePoint">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://lv2plug.in/ns/lv2core#Point"/>
<rdfs:label>Scale Point</rdfs:label>
<rdfs:comment>A single float Point (for control inputs).</rdfs:comment>
</rdfs:Class>
<rdf:Property rdf:about="http://lv2plug.in/ns/lv2core#scalePoint">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:range rdf:resource="http://lv2plug.in/ns/lv2core#ScalePoint"/>
<rdfs:label>scale point</rdfs:label>
<rdfs:comment>A scale point of a port or parameter.</rdfs:comment>
</rdf:Property>
<rdf:Property rdf:about="http://lv2plug.in/ns/lv2core#default">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:label>default</rdfs:label>
<rdfs:comment>The default value that the host SHOULD set this port to when there is no other information available.</rdfs:comment>
</rdf:Property>
<rdf:Property rdf:about="http://lv2plug.in/ns/lv2core#minimum">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:label>minimum</rdfs:label>
<ns0:documentation>
&lt;p&gt;A hint to the host for the minimum useful value that the port will use. This
is a &lt;q&gt;soft&lt;/q&gt; limit; the plugin is required to gracefully accept all values
in the range of a port's data type.&lt;/p&gt;
</ns0:documentation>
</rdf:Property>
<rdf:Property rdf:about="http://lv2plug.in/ns/lv2core#maximum">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:label>maximum</rdfs:label>
<ns0:documentation>
&lt;p&gt;A hint to the host for the maximum useful value that the port will use.
This is a &lt;q&gt;soft&lt;/q&gt; limit; the plugin is required to gracefully accept all
values in the range of a port's data type.&lt;/p&gt;
</ns0:documentation>
</rdf:Property>
<rdfs:Class rdf:about="http://lv2plug.in/ns/lv2core#Feature">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label>Feature</rdfs:label>
<rdfs:comment>An additional feature which a plugin or other resource may use or require.</rdfs:comment>
</rdfs:Class>
<rdf:Property rdf:about="http://lv2plug.in/ns/lv2core#optionalFeature">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:range rdf:resource="http://lv2plug.in/ns/lv2core#Feature"/>
<rdfs:label>optional feature</rdfs:label>
<ns0:documentation>
&lt;p&gt;Signifies that a plugin or other resource supports a certain feature. If
the host supports this feature, it MUST pass its URI and any additional data to
the plugin in LV2_Descriptor::instantiate(). The plugin MUST NOT fail to
instantiate if an optional feature is not supported by the host.&lt;/p&gt;
</ns0:documentation>
</rdf:Property>
<rdf:Property rdf:about="http://lv2plug.in/ns/lv2core#requiredFeature">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:range rdf:resource="http://lv2plug.in/ns/lv2core#Feature"/>
<rdfs:label>required feature</rdfs:label>
<ns0:documentation>
&lt;p&gt;Signifies that a plugin or other resource requires a certain feature. If
the host supports this feature, it MUST pass its URI and any additional data to
the plugin in LV2_Descriptor::instantiate(). The plugin MUST fail to
instantiate if a required feature is not present; hosts SHOULD always check
this before attempting to instantiate a plugin (i.e. discovery by attempting to
instantiate is strongly discouraged).&lt;/p&gt;
</ns0:documentation>
</rdf:Property>
<rdfs:Class rdf:about="http://lv2plug.in/ns/lv2core#ExtensionData">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label>Extension Data</rdfs:label>
<ns0:documentation>
&lt;p&gt;Additional data and/or functions a plugin may return from
LV2_Descriptor::extension_data() which can be used to add additional API beyond
that defined by LV2_Descriptor.&lt;/p&gt;
</ns0:documentation>
</rdfs:Class>
<rdf:Property rdf:about="http://lv2plug.in/ns/lv2core#extensionData">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:range rdf:resource="http://lv2plug.in/ns/lv2core#ExtensionData"/>
<rdfs:label>extension data</rdfs:label>
<ns0:documentation>
&lt;p&gt;Signifies that a plugin provides additional data or functions (as defined by
some extension) via LV2_Descriptor::instantiate().&lt;/p&gt;
</ns0:documentation>
</rdf:Property>
<ns0:Feature rdf:about="http://lv2plug.in/ns/lv2core#isLive">
<rdfs:label>is live</rdfs:label>
<ns0:documentation>
&lt;p&gt;Indicates that the plugin has a real-time dependency (e.g. queues data from
a socket) and so its output must not be cached or subject to significant
latency, and calls to the run method should be done in rapid succession. This
property is not related to &lt;q&gt;hard real-time&lt;/q&gt; execution requirements (see
lv2:hardRTCapable).&lt;/p&gt;
</ns0:documentation>
</ns0:Feature>
<ns0:Feature rdf:about="http://lv2plug.in/ns/lv2core#inPlaceBroken">
<rdfs:label>in-place broken</rdfs:label>
<ns0:documentation>
&lt;p&gt;Indicates that the plugin may cease to work correctly if the host elects to
use the same data location for both input and output. Plugins that will fail
to work correctly if ANY input port is connected to the same location as ANY
output port MUST require this Feature. Doing so should be avoided as it makes
it impossible for hosts to use the plugin to process data &lt;q&gt;in-place&lt;/q&gt;.&lt;/p&gt;
</ns0:documentation>
</ns0:Feature>
<ns0:Feature rdf:about="http://lv2plug.in/ns/lv2core#hardRTCapable">
<rdfs:label>hard real-time capable</rdfs:label>
<ns0:documentation>
&lt;p&gt;Indicates that the plugin is capable of running not only in a conventional
host but also in a &lt;q&gt;hard real-time&lt;/q&gt; environment. To qualify for this the
plugin MUST satisfy all of the following:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;The plugin MUST NOT use malloc(), free() or other heap memory management
functions within its Audio class functions.&lt;/li&gt;
&lt;li&gt;The plugin MUST NOT attempt to make use of any library functions in its
Audio class functions, unless those functions themselves adhere to these
rules (i.e. are hard realtime safe). The plugin MAY assume the standard C
and C math library functions are safe.&lt;/li&gt;
&lt;li&gt;The plugin will not access files, devices, pipes, sockets, IPC or any other
mechanism that might result in process or thread blocking within its Audio
class functions.&lt;/li&gt;
&lt;li&gt;The plugin will take an amount of time to execute a run() call
approximately of form &lt;code&gt;A + B * sample_count&lt;/code&gt; where &lt;code&gt;A&lt;/code&gt;
and &lt;code&gt;B&lt;/code&gt; depend on the machine and host in use. This amount of
time MUST NOT depend on input signals or plugin state.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Note these rules apply to the connect_port() function as well as run().&lt;/p&gt;
</ns0:documentation>
</ns0:Feature>
<rdfs:Class rdf:about="http://lv2plug.in/ns/lv2core#PortProperty">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label>Port Property</rdfs:label>
<rdfs:comment>A property of this port that allows a host to make more sensible decisions (e.g. to provide a better interface).</rdfs:comment>
</rdfs:Class>
<rdf:Property rdf:about="http://lv2plug.in/ns/lv2core#portProperty">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:domain rdf:resource="http://lv2plug.in/ns/lv2core#Port"/>
<rdfs:range rdf:resource="http://lv2plug.in/ns/lv2core#PortProperty"/>
<rdfs:label>port property</rdfs:label>
<rdfs:comment>Relates Ports to PortProperties. The PortProperty may be ignored without catastrophic effects, though it may be useful e.g. for providing a sensible interface for the port.</rdfs:comment>
</rdf:Property>
<ns0:PortProperty rdf:about="http://lv2plug.in/ns/lv2core#connectionOptional">
<rdfs:label>connection optional</rdfs:label>
<rdfs:comment>Indicates that this port does not have to be connected to valid data by the host. If it is to be disconnected then the port MUST set to NULL with a call to the connectPort method.</rdfs:comment>
</ns0:PortProperty>
<ns0:PortProperty rdf:about="http://lv2plug.in/ns/lv2core#reportsLatency">
<rdfs:label>reports latency</rdfs:label>
<ns0:documentation>
&lt;p&gt;Indicates that the port is used to express the processing latency incurred
by the plugin, expressed in samples. The latency may be affected by the current
sample rate, plugin settings, or other factors, and may be changed by the
plugin at any time. Where the latency is frequency dependent the plugin may
choose any appropriate value. If a plugin introduces latency it MUST provide
EXACTLY ONE port with this property set which informs the host of the
&lt;q&gt;correct&lt;/q&gt; latency. In &lt;q&gt;fuzzy&lt;/q&gt; cases the value output should be the
most reasonable based on user expectation of input/output alignment
(eg. musical delay/echo plugins should not report their delay as latency, as it
is an intentional effect).&lt;/p&gt;
</ns0:documentation>
</ns0:PortProperty>
<ns0:PortProperty rdf:about="http://lv2plug.in/ns/lv2core#toggled">
<rdfs:label>toggled</rdfs:label>
<ns0:documentation>
&lt;p&gt;Indicates that the data item should be considered a Boolean toggle. Data
less than or equal to zero should be considered &lt;q&gt;off&lt;/q&gt; or &lt;q&gt;false&lt;/q&gt;, and
data above zero should be considered &lt;q&gt;on&lt;/q&gt; or &lt;q&gt;true&lt;/q&gt;.&lt;/p&gt;
</ns0:documentation>
</ns0:PortProperty>
<ns0:PortProperty rdf:about="http://lv2plug.in/ns/lv2core#sampleRate">
<rdfs:label>sample rate</rdfs:label>
<rdfs:comment>Indicates that any bounds specified should be interpreted as multiples of the sample rate. For instance, a frequency range from 0Hz to the Nyquist frequency (half the sample rate) could be requested by this property in conjunction with lv2:minimum 0.0 and lv2:maximum 0.5. Hosts that support bounds at all MUST support this property.</rdfs:comment>
</ns0:PortProperty>
<ns0:PortProperty rdf:about="http://lv2plug.in/ns/lv2core#integer">
<rdfs:label>integer</rdfs:label>
<rdfs:comment>Indicates that a port's reasonable values are integers (eg. a user interface would likely wish to provide a stepped control allowing only integer input). A plugin MUST operate reasonably even if such a port has a non-integer input.</rdfs:comment>
</ns0:PortProperty>
<ns0:PortProperty rdf:about="http://lv2plug.in/ns/lv2core#enumeration">
<rdfs:label>enumeration</rdfs:label>
<rdfs:comment>Indicates that a port's only reasonable values are the scale points defined for that port. A host SHOULD NOT allow a user to set the value of such a port to anything other than a scale point. However, a plugin MUST operate reasonably even if such a port has an input that is not a scale point, preferably by simply choosing the largest enumeration value less than or equal to the actual input value (i.e. round the input value down).</rdfs:comment>
</ns0:PortProperty>
<ns0:PortProperty rdf:about="http://lv2plug.in/ns/lv2core#isSideChain">
<rdfs:label>is side-chain</rdfs:label>
<rdfs:comment>Indicates that a port is a &quot;sidechain&quot;, which affects the output somehow but should not be considered a main input. Sidechain ports should be connectionOptional, and may be ignored by hosts.</rdfs:comment>
</ns0:PortProperty>
<rdfs:Class rdf:about="http://lv2plug.in/ns/lv2core#GeneratorPlugin">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://lv2plug.in/ns/lv2core#Plugin"/>
<rdfs:label>Generator</rdfs:label>
<rdfs:comment>Any plugin that generates sound internally, rather than processing its input.</rdfs:comment>
</rdfs:Class>
<rdfs:Class rdf:about="http://lv2plug.in/ns/lv2core#InstrumentPlugin">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://lv2plug.in/ns/lv2core#GeneratorPlugin"/>
<rdfs:label>Instrument</rdfs:label>
<rdfs:comment>Any plugin that is intended to be played as a musical instrument.</rdfs:comment>
</rdfs:Class>
<rdfs:Class rdf:about="http://lv2plug.in/ns/lv2core#OscillatorPlugin">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://lv2plug.in/ns/lv2core#GeneratorPlugin"/>
<rdfs:label>Oscillator</rdfs:label>
</rdfs:Class>
<rdfs:Class rdf:about="http://lv2plug.in/ns/lv2core#UtilityPlugin">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://lv2plug.in/ns/lv2core#Plugin"/>
<rdfs:label>Utility</rdfs:label>
<rdfs:comment>Includes things like mathematical functions and non-musical delays.</rdfs:comment>
</rdfs:Class>
<rdfs:Class rdf:about="http://lv2plug.in/ns/lv2core#ConverterPlugin">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://lv2plug.in/ns/lv2core#UtilityPlugin"/>
<rdfs:label>Converter</rdfs:label>
<rdfs:comment>Any plugin that converts some form of input into a different form of output.</rdfs:comment>
</rdfs:Class>
<rdfs:Class rdf:about="http://lv2plug.in/ns/lv2core#AnalyserPlugin">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://lv2plug.in/ns/lv2core#UtilityPlugin"/>
<rdfs:label>Analyser</rdfs:label>
<rdfs:comment>Any plugin that analyses input to output some useful information.</rdfs:comment>
</rdfs:Class>
<rdfs:Class rdf:about="http://lv2plug.in/ns/lv2core#MixerPlugin">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://lv2plug.in/ns/lv2core#UtilityPlugin"/>
<rdfs:label>Mixer</rdfs:label>
<rdfs:comment>A plugin which mixes some number of inputs into some number of outputs.</rdfs:comment>
</rdfs:Class>
<rdfs:Class rdf:about="http://lv2plug.in/ns/lv2core#SimulatorPlugin">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://lv2plug.in/ns/lv2core#Plugin"/>
<rdfs:label>Simulator</rdfs:label>
<rdfs:comment>Plugins that aim to duplicate the effect of some environmental effect or musical equipment.</rdfs:comment>
</rdfs:Class>
<rdfs:Class rdf:about="http://lv2plug.in/ns/lv2core#DelayPlugin">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://lv2plug.in/ns/lv2core#Plugin"/>
<rdfs:label>Delay</rdfs:label>
<rdfs:comment>Plugins that intentionally delay their input signal as an effect.</rdfs:comment>
</rdfs:Class>
<rdfs:Class rdf:about="http://lv2plug.in/ns/lv2core#ModulatorPlugin">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://lv2plug.in/ns/lv2core#Plugin"/>
<rdfs:label>Modulator</rdfs:label>
</rdfs:Class>
<rdfs:Class rdf:about="http://lv2plug.in/ns/lv2core#ReverbPlugin">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://lv2plug.in/ns/lv2core#Plugin"/>
<rdfs:subClassOf rdf:resource="http://lv2plug.in/ns/lv2core#SimulatorPlugin"/>
<rdfs:subClassOf rdf:resource="http://lv2plug.in/ns/lv2core#DelayPlugin"/>
<rdfs:label>Reverb</rdfs:label>
</rdfs:Class>
<rdfs:Class rdf:about="http://lv2plug.in/ns/lv2core#PhaserPlugin">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://lv2plug.in/ns/lv2core#ModulatorPlugin"/>
<rdfs:label>Phaser</rdfs:label>
</rdfs:Class>
<rdfs:Class rdf:about="http://lv2plug.in/ns/lv2core#FlangerPlugin">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://lv2plug.in/ns/lv2core#ModulatorPlugin"/>
<rdfs:label>Flanger</rdfs:label>
</rdfs:Class>
<rdfs:Class rdf:about="http://lv2plug.in/ns/lv2core#ChorusPlugin">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://lv2plug.in/ns/lv2core#ModulatorPlugin"/>
<rdfs:label>Chorus</rdfs:label>
</rdfs:Class>
<rdfs:Class rdf:about="http://lv2plug.in/ns/lv2core#FilterPlugin">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://lv2plug.in/ns/lv2core#Plugin"/>
<rdfs:label>Filter</rdfs:label>
</rdfs:Class>
<rdfs:Class rdf:about="http://lv2plug.in/ns/lv2core#LowpassPlugin">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://lv2plug.in/ns/lv2core#FilterPlugin"/>
<rdfs:label>Lowpass</rdfs:label>
</rdfs:Class>
<rdfs:Class rdf:about="http://lv2plug.in/ns/lv2core#BandpassPlugin">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://lv2plug.in/ns/lv2core#FilterPlugin"/>
<rdfs:label>Bandpass</rdfs:label>
</rdfs:Class>
<rdfs:Class rdf:about="http://lv2plug.in/ns/lv2core#HighpassPlugin">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://lv2plug.in/ns/lv2core#FilterPlugin"/>
<rdfs:label>Highpass</rdfs:label>
</rdfs:Class>
<rdfs:Class rdf:about="http://lv2plug.in/ns/lv2core#CombPlugin">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://lv2plug.in/ns/lv2core#FilterPlugin"/>
<rdfs:label>Comb</rdfs:label>
</rdfs:Class>
<rdfs:Class rdf:about="http://lv2plug.in/ns/lv2core#AllpassPlugin">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://lv2plug.in/ns/lv2core#FilterPlugin"/>
<rdfs:label>Allpass</rdfs:label>
</rdfs:Class>
<rdfs:Class rdf:about="http://lv2plug.in/ns/lv2core#EQPlugin">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://lv2plug.in/ns/lv2core#FilterPlugin"/>
<rdfs:label>Equaliser</rdfs:label>
</rdfs:Class>
<rdfs:Class rdf:about="http://lv2plug.in/ns/lv2core#ParaEQPlugin">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://lv2plug.in/ns/lv2core#EQPlugin"/>
<rdfs:label>Parametric</rdfs:label>
</rdfs:Class>
<rdfs:Class rdf:about="http://lv2plug.in/ns/lv2core#MultiEQPlugin">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://lv2plug.in/ns/lv2core#EQPlugin"/>
<rdfs:label>Multiband</rdfs:label>
</rdfs:Class>
<rdfs:Class rdf:about="http://lv2plug.in/ns/lv2core#SpatialPlugin">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://lv2plug.in/ns/lv2core#Plugin"/>
<rdfs:label>Spatial</rdfs:label>
<rdfs:comment>Plugins that manipulate the position of audio in space (e.g. panning,
stereo width, surround encoding, etc.).</rdfs:comment>
</rdfs:Class>
<rdfs:Class rdf:about="http://lv2plug.in/ns/lv2core#SpectralPlugin">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://lv2plug.in/ns/lv2core#Plugin"/>
<rdfs:label>Spectral</rdfs:label>
<rdfs:comment>Plugins that alter the spectral properties (e.g. frequency) of audio.</rdfs:comment>
</rdfs:Class>
<rdfs:Class rdf:about="http://lv2plug.in/ns/lv2core#PitchPlugin">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://lv2plug.in/ns/lv2core#SpectralPlugin"/>
<rdfs:label>Pitch Shifter</rdfs:label>
</rdfs:Class>
<rdfs:Class rdf:about="http://lv2plug.in/ns/lv2core#AmplifierPlugin">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://lv2plug.in/ns/lv2core#DynamicsPlugin"/>
<rdfs:label>Amplifier</rdfs:label>
</rdfs:Class>
<rdfs:Class rdf:about="http://lv2plug.in/ns/lv2core#EnvelopePlugin">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://lv2plug.in/ns/lv2core#DynamicsPlugin"/>
<rdfs:label>Envelope</rdfs:label>
</rdfs:Class>
<rdfs:Class rdf:about="http://lv2plug.in/ns/lv2core#DistortionPlugin">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://lv2plug.in/ns/lv2core#Plugin"/>
<rdfs:label>Distortion</rdfs:label>
</rdfs:Class>
<rdfs:Class rdf:about="http://lv2plug.in/ns/lv2core#WaveshaperPlugin">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://lv2plug.in/ns/lv2core#DistortionPlugin"/>
<rdfs:label>Waveshaper</rdfs:label>
</rdfs:Class>
<rdfs:Class rdf:about="http://lv2plug.in/ns/lv2core#DynamicsPlugin">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://lv2plug.in/ns/lv2core#Plugin"/>
<rdfs:label>Dynamics</rdfs:label>
<rdfs:comment>Plugins that alter the envelope or dynamic range of audio.</rdfs:comment>
</rdfs:Class>
<rdfs:Class rdf:about="http://lv2plug.in/ns/lv2core#CompressorPlugin">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://lv2plug.in/ns/lv2core#DynamicsPlugin"/>
<rdfs:label>Compressor</rdfs:label>
</rdfs:Class>
<rdfs:Class rdf:about="http://lv2plug.in/ns/lv2core#ExpanderPlugin">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://lv2plug.in/ns/lv2core#DynamicsPlugin"/>
<rdfs:label>Expander</rdfs:label>
</rdfs:Class>
<rdfs:Class rdf:about="http://lv2plug.in/ns/lv2core#LimiterPlugin">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://lv2plug.in/ns/lv2core#DynamicsPlugin"/>
<rdfs:label>Limiter</rdfs:label>
</rdfs:Class>
<rdfs:Class rdf:about="http://lv2plug.in/ns/lv2core#GatePlugin">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://lv2plug.in/ns/lv2core#DynamicsPlugin"/>
<rdfs:label>Gate</rdfs:label>
</rdfs:Class>
<rdfs:Class rdf:about="http://lv2plug.in/ns/lv2core#FunctionPlugin">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://lv2plug.in/ns/lv2core#UtilityPlugin"/>
<rdfs:label>Function</rdfs:label>
</rdfs:Class>
<rdfs:Class rdf:about="http://lv2plug.in/ns/lv2core#ConstantPlugin">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://lv2plug.in/ns/lv2core#GeneratorPlugin"/>
<rdfs:label>Constant</rdfs:label>
</rdfs:Class>
<rdfs:Class rdf:about="http://lv2plug.in/ns/lv2core#MIDIPlugin">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://lv2plug.in/ns/lv2core#Plugin"/>
<rdfs:label>MIDI</rdfs:label>
</rdfs:Class>
</rdf:RDF>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment