File tree Expand file tree Collapse file tree 7 files changed +60
-135
lines changed
pedalboards/default.pedalboard Expand file tree Collapse file tree 7 files changed +60
-135
lines changed Original file line number Diff line number Diff line change 1
1
LD_BIND_NOW=1
2
2
LV2_PATH=/root/.lv2:/usr/lib/lv2:/mnt/plugins
3
+ MOD_DEFAULT_PEDALBOARD=/mnt/pedalboards/default.pedalboard
3
4
MOD_DEV_HMI=1
4
5
MOD_FACTORY_PEDALBOARDS_DIR=/mnt/pedalboards
5
6
MOD_KEYS_PATH=/root/keys/
@@ -10,4 +11,3 @@ SNDFILE_JACKPLAY_AUTOCONNECT=mod-host:monitor-in_%d
10
11
MOD_DEVICE_WEBSERVER_PORT=8888
11
12
MOD_FILE_MANAGER_PORT=8081
12
13
MOD_HOST_SOCKET_PORT=5555
13
-
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ @prefix atom: <http://lv2plug.in/ns/ext/atom#> .
2
+ @prefix doap: <http://usefulinc.com/ns/doap#> .
1
3
@prefix ingen: <http://drobilla.net/ns/ingen#> .
2
4
@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
3
5
@prefix pedal: <http://moddevices.com/ns/modpedal#> .
4
- @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
5
6
6
- <Default.ttl>
7
+ _:b1
8
+ ingen:tail <capture_1> ;
9
+ ingen:head <playback_1> .
10
+
11
+ _:b2
12
+ ingen:tail <capture_2> ;
13
+ ingen:head <playback_2> .
14
+
15
+ <capture_1>
16
+ lv2:index 0 ;
17
+ lv2:name " Capture 1" ;
18
+ lv2:portProperty lv2:connectionOptional ;
19
+ lv2:symbol " capture_1" ;
20
+ a lv2:AudioPort ,
21
+ lv2:InputPort .
22
+
23
+ <capture_2>
24
+ lv2:index 1 ;
25
+ lv2:name " Capture 2" ;
26
+ lv2:portProperty lv2:connectionOptional ;
27
+ lv2:symbol " capture_2" ;
28
+ a lv2:AudioPort ,
29
+ lv2:InputPort .
30
+
31
+ <playback_1>
32
+ lv2:index 2 ;
33
+ lv2:name " Playback 1" ;
34
+ lv2:portProperty lv2:connectionOptional ;
35
+ lv2:symbol " playback_1" ;
36
+ a lv2:AudioPort ,
37
+ lv2:OutputPort .
38
+
39
+ <playback_2>
40
+ lv2:index 3 ;
41
+ lv2:name " Playback 2" ;
42
+ lv2:portProperty lv2:connectionOptional ;
43
+ lv2:symbol " playback_2" ;
44
+ a lv2:AudioPort ,
45
+ lv2:OutputPort .
46
+
47
+ <midi_separated_mode>
48
+ ingen:value 0 ;
49
+ lv2:index 4 ;
50
+ a atom:AtomPort ,
51
+ lv2:InputPort .
52
+
53
+ <default.ttl>
7
54
lv2:prototype ingen:GraphPrototype ;
55
+ doap:name " Default" ;
56
+ pedal:screenshot <screenshot.png> ;
57
+ pedal:thumbnail <thumbnail.png> ;
58
+ ingen:polyphony 1 ;
59
+ lv2:port <capture_1> ,
60
+ <capture_2> ,
61
+ <playback_1> ,
62
+ <playback_2> ,
63
+ <midi_separated_mode> ;
8
64
a lv2:Plugin ,
9
65
ingen:Graph ,
10
- pedal:Pedalboard ;
11
- rdfs:seeAlso <Default.ttl> .
66
+ pedal:Pedalboard .
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments