Changes

Jump to navigation Jump to search
Line 746: Line 746:  
   <http://example.org/person/Mark_Twain> .
 
   <http://example.org/person/Mark_Twain> .
   −
In the zynthian plug in world it's primarily about the definition, allocation and mapping of parameters in the zynthian world to parameters provided by the LV2 plugin we are exchanging data with.
+
In the zynthian plug in world it's primarily about the definition, allocation and mapping of audio and midi ports and parameters in the zynthian world to parameters provided by the LV2 plugin we are exchanging data with.
    
But first you establish some prefixes so you aren't typing out URL all the time...
 
But first you establish some prefixes so you aren't typing out URL all the time...
Line 753: Line 753:  
  @prefix doap: <http://usefulinc.com/ns/doap#>.
 
  @prefix doap: <http://usefulinc.com/ns/doap#>.
 
  @prefix spdx: <http://spdx.org/rdf/terms#>.
 
  @prefix spdx: <http://spdx.org/rdf/terms#>.
 +
 +
Then you use these prefixes to define the relationships we are concerned with...
 +
 +
<http://example.org/lv2/wikipediaexample/silence>
 +
  a lv2:Plugin;
 +
  lv2:binary <silence.so>;
 +
  doap:name "Silence";
 +
  doap:license spdx:GPL-3.0-or-later;
 +
  rdfs:comment "This is an example plugin that includes an example plugin description."
 +
 +
  lv2:port [
 +
    a lv2:AudioPort, lv2:OutputPort;
 +
    lv2:index 0;
 +
    lv2:symbol "output";
 +
    lv2:name "Output";
 +
  ].
    
=LV2 Components=
 
=LV2 Components=
1,137

edits

Navigation menu