summaryrefslogtreecommitdiffstats
path: root/bundles/ingen.lv2/internals.ttl
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-04-22 20:10:09 +0000
committerDavid Robillard <d@drobilla.net>2012-04-22 20:10:09 +0000
commitac13f33ff30427f5dacd40da1ffc6b5dfe398d69 (patch)
tree99bb9dfdfa11db3c4fc179a554f9b5262080da78 /bundles/ingen.lv2/internals.ttl
parent1675b054f3a64a7650acf5616a5006371375f075 (diff)
downloadingen-ac13f33ff30427f5dacd40da1ffc6b5dfe398d69.tar.gz
ingen-ac13f33ff30427f5dacd40da1ffc6b5dfe398d69.tar.bz2
ingen-ac13f33ff30427f5dacd40da1ffc6b5dfe398d69.zip
Move schema and internals definitions to ingen.lv2 bundle.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4238 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'bundles/ingen.lv2/internals.ttl')
-rw-r--r--bundles/ingen.lv2/internals.ttl41
1 files changed, 41 insertions, 0 deletions
diff --git a/bundles/ingen.lv2/internals.ttl b/bundles/ingen.lv2/internals.ttl
new file mode 100644
index 00000000..63f6d799
--- /dev/null
+++ b/bundles/ingen.lv2/internals.ttl
@@ -0,0 +1,41 @@
+@prefix ingen: <http://drobilla.net/ns/ingen-internals#> .
+@prefix ingen: <http://drobilla.net/ns/ingen#> .
+@prefix doap: <http://usefulinc.com/ns/doap#> .
+@prefix foaf: <http://xmlns.com/foaf/0.1/> .
+@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema> .
+
+ingen:Controller
+ a ingen:Plugin ;
+ rdfs:label "Controller" ;
+ rdfs:comment """
+Receives events and outputs signals for some specific controller
+(e.g. MIDI CC).
+""" .
+
+ingen:Trigger
+ a ingen:Plugin ;
+ rdfs:label "Trigger" ;
+ rdfs:comment """
+Receives events and outputs a trigger signal when a specific note is received.
+""" .
+
+ingen:Note
+ a ingen:Plugin ;
+ rdfs:label "Note" ;
+ rdfs:comment """
+Receives events and outputs signals for the individual properties of the
+received notes. This plugin is special because it is internally aware of
+Ingen's polyphony and controls voice allocation.
+""" .
+
+ingen:Transport
+ a ingen:Plugin ;
+ rdfs:label "Transport" ;
+ rdfs:comment """
+Listens to system transport information (when available) and outputs signals
+for the various transport properties. When no system transport information
+is available this plugin outputs "default" values: 4/4, 120bpm.
+""" .