From 277cd0f1959f75db24ecf48be1030aa1af03cd6d Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 7 Jul 2012 06:41:46 +0000 Subject: 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 --- matriseq.ttl | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 matriseq.ttl (limited to 'matriseq.ttl') 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: . +@prefix doap: . +@prefix foaf: . +@prefix lv2: . +@prefix rdf: . +@prefix rdfs: . + + + a foaf:Person ; + foaf:name "David Robillard" ; + foaf:mbox ; + rdfs:seeAlso . + + + a lv2:Plugin , + lv2:AmplifierPlugin ; + doap:maintainer ; + doap:name "Matriseq" ; + doap:license ; + lv2:optionalFeature lv2:hardRTCapable ; + lv2:port [ + a lv2:InputPort , + atom:AtomPort ; + atom:bufferType atom:Sequence ; + atom:supports , + ; + lv2:index 0 ; + lv2:symbol "in" ; + lv2:name "In" + ] , [ + a lv2:OutputPort , + atom:AtomPort ; + atom:bufferType atom:Sequence ; + atom:supports , + ; + lv2:index 1 ; + lv2:symbol "out" ; + lv2:name "Out" + ] . -- cgit v1.2.1