-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathnode.json
128 lines (127 loc) · 3.5 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
{
"name": "Player",
"expand_schedules": true,
"options": [{
"title": "Configuration",
"type": "section"
}, {
"title": "Switch time",
"ui_width": 3,
"name": "switch_time",
"type": "select",
"doc_link": true,
"options": [
[0, "Instantly"],
[0.2, "Short"],
[0.4, "Medium (default)"],
[0.8, "Long"]
],
"default": 0.0
}, {
"title": "Display rotation",
"ui_width": 3,
"name": "rotation",
"type": "select",
"hint": "Rotate content clockwise?",
"doc_link": true,
"options": [
[0, "None"],
[90, "90°"],
[180, "180°"],
[270, "270°"]
],
"default": 0
}, {
"title": "Progress indicator",
"ui_width": 3,
"name": "progress",
"type": "select",
"hint": "Shows how long the current playlist item is displayed",
"doc_link": true,
"options": [
["no", "Disabled"],
["bar_thin_white", "Bar (thin, white)"],
["bar_thick_white", "Bar (thick, white)"],
["bar_thin_black", "Bar (thin, black)"],
["bar_thick_black", "Bar (thick, black)"],
["circle", "Circle"],
["countdown", "Countdown"]
],
"default": "no"
}, {
"title": "Idle image",
"ui_width": 3,
"name": "idle",
"type": "resource",
"doc_link": true,
"valid": ["image"],
"default": "loading.png"
}, {
"title": "Playback",
"ui_width": 3,
"name": "synced",
"type": "select",
"hint": "Start play list items synchronized on multiple devices (based on the global wall clock time)",
"doc_link": true,
"options": [
[false, "Unsynced"],
[true, "Synced across devices"]
],
"default": false
}, {
"title": "Image effect",
"ui_width": 3,
"name": "kenburns",
"type": "select",
"hint": "Slowly pan and zoom displayed images using the Ken Burns effect",
"doc_link": true,
"options": [
[false, "No effect"],
[true, "Ken Burns effect"]
],
"default": false
}, {
"title": "Audio",
"ui_width": 3,
"name": "audio",
"type": "select",
"hint": "Play audio for all videos",
"doc_link": true,
"options": [
[false, "No audio"],
[true, "Audio for videos"]
],
"default": false
},
{
"title": "What to display",
"type": "section"
}, {
"title": "Playlist",
"name": "playlist",
"type": "list",
"itemname": "Item",
"items": [{
"title": "Asset",
"ui_width": 6,
"name": "file",
"type": "resource",
"valid": ["image", "video"],
"features": ["hevc", "image4k"],
"default": "empty.png"
}, {
"title": "Play time (in seconds)",
"ui_width": 2,
"name": "duration",
"type": "duration",
"hint": "How long should this item be displayed on screen. For videos, use their duration",
"default": 5
}, {
"title": "Schedule",
"name": "schedule",
"ui_width": 4,
"type": "schedule",
"default": "always"
}]
}]
}