aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/LV2/src/Acceleration/Acceleration.ttl
blob: fec2952b450f6385dc41c53f977d70070419a668 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# Airwindows Acceleration Limiter plugin description

@prefix doap:  <http://usefulinc.com/ns/doap#> .
@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 units: <http://lv2plug.in/ns/extensions/units#> .

<https://www.airwindows.com/acceleration>
    a lv2:Plugin ,
        lv2:LimiterPlugin ;
    lv2:project <https://www.airwindows.com> ;
    doap:name "Airwindows Acceleration Limiter" ;
    doap:license <http://opensource.org/licenses/mit> ;

    # Unsure what this does, and if the plugin conforms to it.
    # Taken from the LV2 sample amp plugin, figure out later.
    lv2optionalFeature lv2:hardRTCapable ;

    # Define the ports for this plugin.
    # Two control ports - limit and dry/wet
    # One audio in and one audio out
    lv2:port [
      a lv2:InputPort , lv2:ControlPort ;
      lv2:index 0 ;
      lv2:symbol "A" ;
      lv2:name "Limit" ;
      lv2:default 0.32 ;
      lv2:minimum 0.0 ;
      lv2:maximum 1.0 ;
    ] , [
      a lv2:InputPort , lv2:ControlPort ;
      lv2:index 1 ;
      lv2:symbol "B" ;
      lv2:name "Dry/Wet" ;
      lv2:default 1.0 ;
      lv2:minimum 0.0 ;
      lc2:maximum 1.0 ;
    ] , [
      a lv2:InputPort , lv2:AudioPort ;
      lv2:index 2 ;
      lv2:symbol "in" ;
      lv2:name "In" ;
    ] , [
      a lv2:OutputPort , lv2:AudioPort ;
      lv2:index 3 ;
      lv2:symbol "out" ;
      lv2:name "Out" ;
    ] .