-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbs2b.ttl
79 lines (62 loc) · 2.15 KB
/
bs2b.ttl
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
@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#> .
@prefix pset: <http://lv2plug.in/ns/ext/presets#> .
<http://bs2b.sourceforge.net/plugins/bs2b>
a lv2:Plugin ,
lv2:SimulatorPlugin ;
doap:name "Bauer stereophonic-to-binaural" ;
doap:license <http://usefulinc.com/doap/licenses/gpl> ;
# LB_PORT_LOWPASS,
# LB_PORT_FEEDING,
# LB_PORT_INPUT_LEFT,
# LB_PORT_INPUT_RIGHT,
# LB_PORT_OUTPUT_LEFT,
# LB_PORT_OUTPUT_RIGHT,
lv2:port [
a lv2:InputPort ,
lv2:ControlPort ;
lv2:index 0 ;
lv2:symbol "fcut" ;
lv2:name "Lowpass filter cut frequency (Hz)" ;
lv2:default 700.0 ;
lv2:minimum 300.0 ;
lv2:maximum 2000.0 ;
units:unit units:hz ;
] , [
a lv2:InputPort ,
lv2:ControlPort ;
lv2:index 1 ;
lv2:symbol "feed" ;
lv2:name "Feeding level (dB)" ;
lv2:default 4.5 ;
lv2:minimum 1.0 ;
lv2:maximum 15.0 ;
units:unit units:db ;
] , [
a lv2:InputPort ,
lv2:AudioPort ;
lv2:index 2 ;
lv2:symbol "in0" ;
lv2:name "Input left"
] , [
a lv2:InputPort ,
lv2:AudioPort ;
lv2:index 3 ;
lv2:symbol "in1" ;
lv2:name "Input right"
] , [
a lv2:OutputPort ,
lv2:AudioPort ;
lv2:index 4 ;
lv2:symbol "out0" ;
lv2:name "Output left"
] , [
a lv2:OutputPort ,
lv2:AudioPort ;
lv2:index 5 ;
lv2:symbol "out1" ;
lv2:name "Output right"
] .