-
Notifications
You must be signed in to change notification settings - Fork 2
/
configschema.json
192 lines (192 loc) · 5.12 KB
/
configschema.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
{
"$schema": "http://json-schema.org/draft-07/schema",
"type": "object",
"additionalProperties": false,
"properties": {
"minEstimate": {
"type": "number",
"description": "Minimum estimate a run must have (in seconds) for commercial automation to take effect.",
"default": 3600
},
"commercialLength": {
"type": "number",
"description": "Length of commercials ran (in seconds).",
"default": 120
},
"targetDensity": {
"type": "number",
"description": "Minimum amount of commercials that must be ran each hour (in seconds).",
"default": 210
},
"endBuffer": {
"type": "number",
"description": "Amount of time (in seconds) before the end of a run in which commercials cannot play; mostly used as a backup.",
"default": 1200
},
"thisEvent": {
"type": "number",
"description": "This toggles if on the 1st/2nd stream if applicable for your event.",
"minimum": 1,
"maximum": 2,
"default": 1
},
"intermissionCommercials": {
"type": "object",
"additionalProperties": false,
"properties": {
"lengthFirst": {
"type": "number",
"default": 150
},
"lengthSecond": {
"type": "number",
"default": 150
},
"lengthOther": {
"type": "number",
"default": 60
},
"waitFirst": {
"type": "number",
"description": "Amount of time (in seconds) to wait between the first and second/other commercial.",
"default": 190
},
"waitSecond": {
"type": "number",
"description": "(Optional) Amount of time (in seconds) to wait between the second and other commercial.",
"default": 530
},
"waitOther": {
"type": "number",
"description": "Amount of time (in seconds) to wait between the first/second and other commercial.",
"default": 300
},
"specialLogic": {
"type": "boolean",
"description": "This is a special toggle to change the intermission commercial logic; only needs to be used if instructed.",
"default": false
}
},
"required": [
"lengthFirst",
"lengthOther",
"waitFirst",
"waitOther",
"specialLogic"
]
},
"obs": {
"type": "object",
"additionalProperties": false,
"properties": {
"enabled": {
"type": "boolean",
"default": true
},
"address": {
"type": "string",
"default": "localhost:4444"
},
"password": {
"type": "string",
"default": ""
},
"nonRunCommercialTriggerScene": {
"type": "string",
"default": "Intermission (commercials)",
"description": "Name of the scene in OBS you wish to start running non-run based commercials on when switched to."
},
"nonRunCommercialScenes": {
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
},
"uniqueItems": true,
"minItems": 1
}
],
"default": [
"Intermission Player",
"Intermission",
"Intermission (commercials)"
],
"description": "Name(s) of the scene(s) in OBS you wish to allow non-run based commercials to continue running on."
}
},
"required": [
"enabled",
"address",
"password",
"nonRunCommercialTriggerScene",
"nonRunCommercialScenes"
]
},
"server": {
"type": "object",
"additionalProperties": false,
"properties": {
"enabled": {
"type": "boolean",
"default": false
},
"address": {
"type": "string",
"default": "ADDRESS"
},
"token": {
"type": "string",
"default": "TOKEN"
},
"channels": {
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
},
"uniqueItems": true,
"minItems": 1
}
],
"default": "esamarathon",
"description": "Name(s) of the channel(s) commercials shall be ran on."
},
"updateMetadata": {
"type": "boolean",
"default": false
},
"updateMetadataAltMode": {
"type": "boolean",
"default": false
}
},
"description": "Needed if using our external server to run commercials.",
"required": [
"enabled",
"address",
"token",
"channels",
"updateMetadata",
"updateMetadataAltMode"
]
}
},
"required": [
"minEstimate",
"commercialLength",
"targetDensity",
"endBuffer",
"thisEvent",
"intermissionCommercials",
"obs",
"server"
]
}