-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnode.json
502 lines (501 loc) · 17.4 KB
/
node.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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
{
"name": "Content Player",
"control_ui": "control.html",
"permissions": {
"network": "Needs network access for synchronization across devices"
},
"optional": [
"fallback.*.jpg",
"control.html",
"doc-*"
],
"scratch_scope": "package",
"options": [{
"title": "Content configuration",
"type": "section"
}, {
"title": "Content cycle",
"tab": "Primary content",
"name": "playlist",
"type": "list",
"itemname": "Slot",
"adders": [{
"label": "fullscreen slot",
"help": "Add an asset to play fullscreen on each individual display.",
"item": {
"slot_type": "fullscreen",
"schedule": "always"
},
"select": ["asset", {
"asset_id": "asset",
"duration": "duration"
}]
}, {
"label": "> fullscreen with alternatives",
"help": "Adds a fullscreen slot with enabled alternative settings enabled.",
"item": {
"slot_type": "fullscreen",
"fullscreen_slot": ["alts"],
"schedule": "always"
},
"select": ["asset", {
"asset_id": "asset",
"duration": "duration"
}]
}, {
"label": "> video wall slot",
"help": "Add an asset that plays according to the display size configuration made on each device's config page.",
"item": {
"slot_type": "wall",
"schedule": "always"
},
"select": ["asset", {
"asset_id": "asset",
"duration": "duration"
}]
}],
"items": [{
"title": "Slot Type",
"ui_width": 0,
"name": "slot_type",
"type": "select",
"options": [
["fullscreen", "Fullscreen"],
["wall", "Video wall"]
],
"default": "fullscreen"
}, {
"type": "section",
"name": "fullscreen_slot",
"ui_type": "small",
"hint": "This asset will play fullscreen on each assigned device.",
"condition": ["==", ["config", "slot_type", "value"], "fullscreen"],
"title": "[monitor] Fullscreen playback",
"toggles": [{
"key": "tags",
"name": "Extra tags",
"help": "Specify extra tags applied to this slot, regardless of the tags of the asset."
}, {
"key": "alts",
"name": "Alternative fullscreen content",
"help": "Assign alternative content to different displays. You can control which device displays which alternative on each device's configuration page."
}]
}, {
"type": "section",
"name": "wall_slot",
"ui_type": "small",
"hint": "This asset will potentially play across multiple displays depending on each device's screen configuration on each device's configuration page.",
"condition": ["==", ["config", "slot_type", "value"], "wall"],
"title": "[layout] Video wall playback",
"toggles": [{
"key": "tags",
"name": "Extra tags",
"help": "Specify extra tags applied to this slot, regardless of the tags of the asset"
}]
}, {
"title": "Asset",
"ui_width": 6,
"name": "asset",
"type": "resource",
"valid": ["image", "video", "child"],
"features": ["image4k", "hevc"],
"default": "empty.png"
}, {
"title": "Play time",
"ui_width": 2,
"name": "duration",
"type": "duration",
"hint": "How long should this item be displayed on screen. Use 0 to use automatically selected duration. Minimum 3 seconds.",
"default": 10,
"suggestions": [10, 20, 60, 120]
}, {
"title": "Schedule",
"ui_width": 4,
"name": "schedule",
"type": "schedule",
"default": "always"
}, {
"title": "",
"condition": ["&&", ["config", "asset"], ["config", "asset", "is_child"]],
"name": "child_config",
"type": "custom",
"child_ref": "asset",
"page": "zz-plugin.html",
"default": {}
}, {
"title": "",
"name": "alternatives",
"condition": ["config", "fullscreen_slot", "alts"],
"type": "list",
"itemname": "Alternative asset",
"allow_playlist": false,
"adders": [{
"label": "alternative",
"item": {},
"select": ["asset", {
"asset_id": "asset"
}]
}, {
"label": "> playlist",
"item": {
"alt_type": "playlist"
},
"select": ["playlist", {
"playlist_id": "playlist"
}]
}],
"items": [{
"title": "Alt Type",
"ui_width": 0,
"name": "alt_type",
"type": "select",
"options": [
["item", "Single Item"],
["playlist", "Playlist"]
],
"default": "item"
}, {
"title": "Asset",
"ui_width": 6,
"name": "asset",
"condition": ["==", ["config", "alt_type", "value"], "item"],
"type": "resource",
"valid": ["image", "video", "child"],
"features": ["image4k", "hevc"],
"default": "empty.png"
}, {
"title": "Playlist",
"ui_width": 6,
"name": "playlist",
"condition": ["==", ["config", "alt_type", "value"], "playlist"],
"type": "playlist"
}, {
"title": "Alternative",
"ui_width": 6,
"name": "alternative_idx",
"hint": "Configure a device to prefer this alternative on its device detail page and it will play this asset instead of the default asset.",
"type": "select",
"options": [
["default", "Default"],
[1, "Alternative 1"],
[2, "Alternative 2"],
[3, "Alternative 3"],
[4, "Alternative 4"],
[5, "Alternative 5"],
[6, "Alternative 6"],
[7, "Alternative 7"],
[8, "Alternative 8"]
],
"default": 1
}, {
"title": "Options",
"condition": ["config", "asset", "is_child"],
"name": "child_config",
"type": "custom",
"child_ref": "asset",
"page": "zz-plugin.html",
"default": {}
}]
}, {
"title": "Extra tags applied to this slot",
"condition": ["||",
["config", "fullscreen_slot", "tags"],
["config", "wall_slot", "tags"]
],
"name": "extra_tags",
"type": "string",
"ui_width": 12,
"ui_type": "asset-tags",
"default": ""
}]
}, {
"title": "Overlays in low to high priority order",
"name": "overlay_groups",
"tab": "Overlays",
"type": "list",
"itemname": "Overlay group",
"adders": [{
"label": "overlay group",
"item": {}
}, {
"label": "> preconfigured progress bar",
"help": "Adds a overlay containing a preconfigured progress bar",
"item": {
"overlays": [{
"asset": "progressbar",
"child_config": {
"mode": "bar_thin_white"
}
}]
}
}],
"items": [{
"name": "_id",
"type": "id",
"title": "id"
}, {
"title": "[layers] Overlay group",
"ui_type": "small",
"name": "overlay_group",
"type": "section",
"toggles": [{
"key": "conditional",
"name": "Conditional overlay",
"help": "Make the overlay appear depending on one or more conditions"
}]
}, {
"title": "Overlays added from back to front",
"name": "overlays",
"type": "list",
"itemname": "Overlay",
"adders": [{
"label": "Overlay",
"help": "Add an overlay",
"item": {},
"select": ["asset", {
"asset_id": "asset"
}]
}],
"items": [{
"name": "_id",
"type": "id",
"title": "id"
}, {
"title": "Overlay content",
"ui_width": 12,
"ui_prio": 1,
"name": "asset",
"type": "resource",
"valid": ["child", "image"],
"features": ["image4k"],
"default": "example"
}, {
"type": "section",
"name": "image_slot",
"ui_prio": 0,
"ui_type": "small",
"condition": ["config", "asset", "is_image"],
"title": "Image asset"
}, {
"type": "section",
"name": "video_slot",
"ui_prio": 0,
"ui_type": "small",
"condition": ["config", "asset", "is_video"],
"title": "Video asset"
}, {
"type": "section",
"name": "child_slot",
"ui_prio": 0,
"ui_type": "small",
"condition": ["config", "asset", "is_child"],
"title": "Plugin"
}, {
"title": "",
"condition": ["config", "asset", "is_child"],
"name": "child_config",
"ui_prio": 2,
"type": "custom",
"child_ref": "asset",
"page": "zz-plugin.html",
"default": {}
}]
}, {
"title": "Show overlay only if all of the following conditions are true",
"name": "conditions",
"condition": ["config", "overlay_group", "conditional"],
"type": "list",
"itemname": "Condition",
"ui_type": "rows",
"adders": [{
"label": "Condition",
"help": "Add a condition",
"item": {}
}],
"items": [{
"title": "",
"ui_width": 5,
"name": "condition_type",
"type": "select",
"options": [
["slot_type", "Slot type is"],
["not_slot_type", "Slot type is not"],
["content_type", "Content type is"],
["not_content_type", "Content type is not"],
["tags_any", "Content has any of these tags"],
["tags_none", "Content has none of these tags"],
["schedule", "Playback starts at"]
],
"default": "slot_type"
}, {
"title": "",
"ui_width": 7,
"name": "slot_type",
"condition": ["||",
["==", ["config", "condition_type", "value"], "slot_type"],
["==", ["config", "condition_type", "value"], "not_slot_type"]
],
"type": "select",
"options": [
["fullscreen", "fullscreen content"],
["wall", "wall content"]
],
"default": "fullscreen"
}, {
"title": "",
"ui_width": 7,
"name": "content_type",
"condition": ["||",
["==", ["config", "condition_type", "value"], "content_type"],
["==", ["config", "condition_type", "value"], "not_content_type"]
],
"type": "select",
"options": [
["image", "image content"],
["video", "video content"]
],
"default": "image"
}, {
"title": "",
"condition": ["||",
["==", ["config", "condition_type", "value"], "tags_any"],
["==", ["config", "condition_type", "value"], "tags_none"]
],
"name": "tags",
"type": "string",
"ui_width": 7,
"ui_type": "asset-tags",
"default": ""
}, {
"title": "",
"condition": ["==", ["config", "condition_type", "value"], "schedule"],
"ui_width": 7,
"name": "schedule",
"type": "schedule",
"default": "always"
}]
}]
},
{
"title": "Playback settings",
"intro": "You can find additional per-device settings on the detail page of a device after assigning this setup to it.",
"name": "settings",
"type": "section"
}, {
"title": "Horizontal fallback",
"ui_width": 4,
"tab": "General",
"name": "fallback_h",
"type": "resource",
"hint": "Shown on desync, while starting, when nothing scheduled, etc..",
"valid": ["image"],
"default": "fallback_h.jpg"
}, {
"title": "Vertical fallback",
"ui_width": 4,
"tab": "General",
"name": "fallback_v",
"type": "resource",
"hint": "Shown on desync, while starting, when nothing scheduled, etc..",
"valid": ["image"],
"default": "fallback_v.jpg"
}, {
"title": "When playing only fallback",
"ui_width": 4,
"name": "blank",
"tab": "General",
"info": "Turn off attached display",
"doc_link": true,
"type": "select",
"options": [
[false, "Show fallback content"],
[true, "Turn off display"]
],
"default": false
}, {
"title": "Content scaling",
"ui_width": 4,
"tab": "Advanced",
"name": "max_stretch",
"doc_link": true,
"type": "select",
"options": [
[1, "Preserve aspect ratio"],
[1.05, "Max 5% stretch"],
[1.10, "Max 10% stretch"],
[1.15, "Max 15% stretch"],
[1.20, "Max 20% stretch"],
[1000, "Fill available space"]
],
"default": "keep_aspect"
}, {
"title": "Virtual resolution",
"tab": "Advanced",
"ui_width": 4,
"name": "virtual_resolution",
"hint": "You can force a virtual resolution here to make the presentation independant from the screen resolution of the device(s).",
"type": "select",
"options": [
[[1920, 1080], "Force 1920x1080 (16:9)"],
[[1280, 1024], "Force 1280x1024 (5:4)"],
[[1024, 768], "Force 1024x768 (4:3)"],
[false, "Use detected native screen"]
],
"default": [1920, 1080]
}, {
"title": "Audio",
"ui_width": 4,
"tab": "Advanced",
"name": "audio",
"doc_link": true,
"type": "select",
"options": [
[true, "Audio enabled"],
[false, "Audio disabled"]
],
"default": true
}, {
"title": "Playback slot fusing",
"tab": "Advanced",
"ui_width": 4,
"name": "fuse",
"hint": "If the same content plays across consecutive slots on the same display, don't restart but continue playback, fusing the playback across slots.",
"type": "select",
"options": [
["never", "Force per item playback"],
["primary", "Across primary slots"],
["overlays", "Across overlays"],
["all", "Across all content"]
],
"default": "all"
}, {
"title": "Fade/Reveal effect",
"tab": "Advanced",
"ui_width": 4,
"name": "reveal",
"doc_link": true,
"type": "select",
"options": [
[[0, "instant"], "Instant transitions"],
[[0.5, "linear"], "0.5s linear"],
[[1, "linear"], "1s linear"],
[[0.5, "inOutQuad"], "0.5s smooth"],
[[1, "inOutQuad"], "1s smooth"],
[[0.5, "outExpo"], "0.5s expo"],
[[1, "outExpo"], "1s expo"]
],
"default": [0, "instant"]
}, {
"title": "Remote control",
"ui_width": 4,
"tab": "Advanced",
"name": "remote_port",
"hint": "Opens UDP to network. Can be used to manually trigger configured playlist slots.",
"doc_link": true,
"type": "select",
"options": [
[0, "Not yet supported"]
],
"default": 0
}]
}