-
Notifications
You must be signed in to change notification settings - Fork 3
/
plugin.json
62 lines (62 loc) · 1.44 KB
/
plugin.json
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
{
"$schema": "./node_modules/midi-mixer-plugin/plugin.schema.json",
"id": "ca.jaggernaut.midi-mixer.voicemeeter",
"name": "Voicemeeter",
"type": "node",
"version": "1.6.0",
"author": "Jaggernaut",
"main": "lib/index.js",
"icon": "voicemeeter.ico",
"settings": {
"notes": {
"label": "Note",
"type": "status",
"fallback": "Reload plugin after changing any of these settings. Check the info tab for explanations of the customization options."
},
"maxdb": {
"label": "Max db",
"type": "slider",
"fallback": 12,
"min": -60,
"max": 12
},
"mindb": {
"label": "Min db",
"type": "slider",
"fallback": -60,
"min": -60,
"max": 12
},
"customStripAssign": {
"label": "Custom Strip Assign",
"type": "text"
},
"customStripMute": {
"label": "Custom Strip Mute",
"type": "text"
},
"customStripRun": {
"label": "Custom Strip Run",
"type": "text"
},
"enableStripLimits": {
"label": "Enable Strip Limiter Groups",
"type": "toggle",
"fallback": false
},
"BusToggles": {
"label": "Custom Bus Toggle Buttons",
"type": "text",
"fallback": "strip0:A1,!B2;strip1:A1"
},
"vmstatus": {
"label": "Voicemeeter Status",
"type": "status",
"fallback": "Not connected"
},
"runbutton": {
"label": "run",
"type": "button"
}
}
}