first commit
This commit is contained in:
commit
391f9e9a0b
10 changed files with 225 additions and 0 deletions
41
dynamite.ttl
Normal file
41
dynamite.ttl
Normal file
|
@ -0,0 +1,41 @@
|
|||
@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 doap: <http://usefulinc.com/ns/doap#> .
|
||||
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
|
||||
|
||||
<https://github.com/aleksrutins/dynamite> a lv2:Plugin , lv2:AmplifierPlugin , doap:Project ;
|
||||
lv2:binary <dynamite.so> ;
|
||||
doap:name "Dynamite" ;
|
||||
doap:license <https://opensource.org/licenses/mit> ;
|
||||
doap:maintainer [
|
||||
a foaf:Person ;
|
||||
foaf:homepage <https://aleks.rutins.com> ;
|
||||
foaf:name "Aleks Rutins" ;
|
||||
] ;
|
||||
lv2:optionalFeature lv2:hardRTCapable ;
|
||||
|
||||
lv2:port
|
||||
[
|
||||
a lv2:InputPort , lv2:AudioPort ;
|
||||
lv2:index 0 ;
|
||||
lv2:symbol "audio_in" ;
|
||||
lv2:name "Audio Input" ;
|
||||
] ,
|
||||
|
||||
[
|
||||
a lv2:OutputPort , lv2:AudioPort ;
|
||||
lv2:index 1 ;
|
||||
lv2:symbol "audio_out" ;
|
||||
lv2:name "Audio Output" ;
|
||||
] ,
|
||||
|
||||
[
|
||||
a lv2:InputPort , lv2:ControlPort ;
|
||||
lv2:index 2 ;
|
||||
lv2:symbol "drive" ;
|
||||
lv2:name "Drive" ;
|
||||
lv2:default 0.0 ;
|
||||
lv2:minimum -20.0 ;
|
||||
lv2:maximum 20.0 ;
|
||||
] .
|
Loading…
Add table
Add a link
Reference in a new issue