-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodule.json
More file actions
78 lines (73 loc) · 1.49 KB
/
module.json
File metadata and controls
78 lines (73 loc) · 1.49 KB
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
{
"name": "d&b EnSnap OSC Control",
"type": "OSC",
"path": "Software",
"version": "1.1.2",
"description": "Module to control the d&b audiotechnik EnSnap software by OSC.\n\nPlease visit https://www.dbsoundscape.com/ to learn more about d&b Soundscape and DS100, especially download the TI501 'd&b Soundscape System design and operation' and DS100 OSC protocol white paper.\n\nChataigne Module specific documentation can be found in the README on GitHub:",
"url": "https://github.com/madees/dbaudio-EnSnap-Chataigne-Module",
"downloadURL": "https://github.com/madees/dbaudio-EnSnap-Chataigne-Module/archive/master.zip",
"hasInput": false,
"hasOutput": true,
"hideDefaultCommands": true,
"hideDefaultParameters": [
"autoRange",
"autoFeedback",
"pass_through",
"input",
"outputs",
"useHierarchy",
"colorSendMode",
"booleanSendMode"
],
"defaults": {
"autoAdd": false,
"oscInput": {
"localPort": 50021
},
"OSC Outputs": {
"OSC Output": {
"local": false,
"remoteHost": "192.168.1.200",
"remotePort": 50020
}
}
},
"scripts": [
"EnSnap-OSC.js"
],
"commands":
{
"OSC Cue Control":
{
"menu":"",
"callback":"OSCCueControl",
"parameters":
{
"Enable":
{
"type":"Boolean"
}
}
},
"Enable ALL Cue controls":
{
"menu":"",
"callback":"enableAllCue",
"parameters":
{
}
},
"GO to Cue":
{
"menu":"",
"callback":"goCue",
"parameters":
{
"Cue Name":
{
"type":"String"
}
}
}
}
}