summaryrefslogtreecommitdiffstats
path: root/matriseq.ttl
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-07-07 06:41:46 +0000
committerDavid Robillard <d@drobilla.net>2012-07-07 06:41:46 +0000
commit277cd0f1959f75db24ecf48be1030aa1af03cd6d (patch)
tree5d384ed3a63f1de3f2278cbdfebba46f3e4a95b0 /matriseq.ttl
downloadmatriseq.lv2-277cd0f1959f75db24ecf48be1030aa1af03cd6d.tar.gz
matriseq.lv2-277cd0f1959f75db24ecf48be1030aa1af03cd6d.tar.bz2
matriseq.lv2-277cd0f1959f75db24ecf48be1030aa1af03cd6d.zip
Add matriseq, a step sequencer for the Novation Launchpad.
git-svn-id: http://svn.drobilla.net/lad/trunk/plugins/matriseq@4512 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'matriseq.ttl')
-rw-r--r--matriseq.ttl39
1 files changed, 39 insertions, 0 deletions
diff --git a/matriseq.ttl b/matriseq.ttl
new file mode 100644
index 0000000..2abf153
--- /dev/null
+++ b/matriseq.ttl
@@ -0,0 +1,39 @@
+@prefix atom: <http://lv2plug.in/ns/ext/atom#> .
+@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#> .
+
+<http://drobilla.net/drobilla#me>
+ a foaf:Person ;
+ foaf:name "David Robillard" ;
+ foaf:mbox <mailto:d@drobilla.net> ;
+ rdfs:seeAlso <http://drobilla.net/drobilla> .
+
+<http://drobilla.net/plugins/matriseq>
+ a lv2:Plugin ,
+ lv2:AmplifierPlugin ;
+ doap:maintainer <http://drobilla.net/drobilla#me> ;
+ doap:name "Matriseq" ;
+ doap:license <http://opensource.org/licenses/isc> ;
+ lv2:optionalFeature lv2:hardRTCapable ;
+ lv2:port [
+ a lv2:InputPort ,
+ atom:AtomPort ;
+ atom:bufferType atom:Sequence ;
+ atom:supports <http://lv2plug.in/ns/ext/midi#MidiEvent> ,
+ <http://lv2plug.in/ns/ext/patch#Message> ;
+ lv2:index 0 ;
+ lv2:symbol "in" ;
+ lv2:name "In"
+ ] , [
+ a lv2:OutputPort ,
+ atom:AtomPort ;
+ atom:bufferType atom:Sequence ;
+ atom:supports <http://lv2plug.in/ns/ext/midi#MidiEvent> ,
+ <http://lv2plug.in/ns/ext/patch#Message> ;
+ lv2:index 1 ;
+ lv2:symbol "out" ;
+ lv2:name "Out"
+ ] .