init
This commit is contained in:
88
TEMPLATE/manifest.ttl
Normal file
88
TEMPLATE/manifest.ttl
Normal file
@@ -0,0 +1,88 @@
|
||||
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
|
||||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
||||
|
||||
# Documents
|
||||
@prefix doap: <http://usefulinc.com/ns/doap#> .
|
||||
|
||||
# Persons
|
||||
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
|
||||
|
||||
# LV2
|
||||
@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
|
||||
@prefix atom: <http://lv2plug.in/ns/ext/atom#> .
|
||||
@prefix urid: <http://lv2plug.in/ns/ext/urid#> .
|
||||
@prefix time: <http://lv2plug.in/ns/ext/time#> .
|
||||
@prefix midi: <http://lv2plug.in/ns/ext/midi#> .
|
||||
@prefix state: <http://lv2plug.in/ns/ext/state#> .
|
||||
@prefix work: <http://lv2plug.in/ns/ext/worker#> .
|
||||
@prefix rsz: <http://lv2plug.in/ns/ext/resize-port#> .
|
||||
@prefix ui: <http://lv2plug.in/ns/extensions/ui#> .
|
||||
@prefix pg: <http://ll-plugins.nongnu.org/lv2/ext/portgroups#>.
|
||||
@prefix YOURPLUGIN: <YOURURL>.
|
||||
|
||||
YOURPLUGIN:in a pg:mainInput , pg:StereoGroup .
|
||||
YOURPLUGIN:out a pg:mainOutput , pg:StereoGroup ;
|
||||
pg:source YOURPLUGIN:in .
|
||||
|
||||
|
||||
YOURPLUGIN: a lv2:Plugin , lv2:ReverbPlugin , doap:Project ;
|
||||
lv2:binary <YOURPLUGIN.so> ;
|
||||
rdf:seeAlso <YOURPLUGIN.ttl> ;
|
||||
doap:name "YOURPLUGIN" ;
|
||||
doap:license <https://opensource.org/license/gpl-3.0> ;
|
||||
doap:maintainer [ foaf:name "USERNAME" ; ] ;
|
||||
|
||||
lv2:optionalFeature lv2:hardRTCapable ;
|
||||
lv2:requiredFeature urid:map ;
|
||||
|
||||
lv2:minorVersion 1 ;
|
||||
lv2:microVersion 2 ;
|
||||
|
||||
lv2:port
|
||||
[
|
||||
a lv2:AudioPort , lv2:InputPort ;
|
||||
lv2:index 0 ;
|
||||
lv2:symbol "audio_in_l" ;
|
||||
lv2:name "Audio input left" ;
|
||||
pg:group YOURPLUGIN:in;
|
||||
lv2:designation pg:left ;
|
||||
] ,
|
||||
|
||||
[
|
||||
a lv2:AudioPort , lv2:InputPort ;
|
||||
lv2:index 1 ;
|
||||
lv2:symbol "audio_in_r" ;
|
||||
lv2:name "Audio input right" ;
|
||||
pg:group YOURPLUGIN:in;
|
||||
lv2:designation pg:right ;
|
||||
] ,
|
||||
|
||||
[
|
||||
a lv2:AudioPort , lv2:OutputPort ;
|
||||
lv2:index 2 ;
|
||||
lv2:symbol "audio_out_l" ;
|
||||
lv2:name "Audio output left" ;
|
||||
pg:group YOURPLUGIN:out ;
|
||||
lv2:designation pg:left ;
|
||||
] ,
|
||||
|
||||
[
|
||||
a lv2:AudioPort , lv2:OutputPort ;
|
||||
lv2:index 3 ;
|
||||
lv2:symbol "audio_out_r" ;
|
||||
lv2:name "Audio output right" ;
|
||||
pg:group YOURPLUGIN:out;
|
||||
lv2:designation pg:right ;
|
||||
] ,
|
||||
|
||||
[
|
||||
a lv2:ControlPort , lv2:InputPort ;
|
||||
lv2:index 4 ;
|
||||
lv2:symbol "example_control" ;
|
||||
lv2:name "Example Control" ;
|
||||
lv2:default 1.0 ;
|
||||
lv2:minimum 0.0 ;
|
||||
lv2:maximum 2.0 ;
|
||||
] .
|
||||
|
||||
|
||||
Reference in New Issue
Block a user