-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
122 lines (121 loc) · 3.74 KB
/
settings.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
{
"settingGroups": {
"ArtNetTimeCode": {
"description": "ArtNet Timecode Support",
"settings": [
"ArtNetTimeCodeEnabled",
"ArtNetTimeCodeType",
"ArtNetTimeCodeProcessing",
"ArtNetTimeCodeTarget",
"ArtNetSyncPlaylist"
]
},
"ArtTriggerSupport": {
"description": "ArtNet Trigger Support",
"settings": [
"ArtNetTriggerEnabled",
"ArtNetTriggerOEMCode"
]
}
},
"settings": {
"ArtNetTriggerEnabled": {
"name": "ArtNetTriggerEnabled",
"description": "Enable ArtNet Trigger Processing",
"tip": "Enable ArtNet Trigger Processing",
"restart": 1,
"reboot": 0,
"type": "checkbox",
"default": 0,
"children": {
"1": [
"ArtNetTriggerOEMCode"
]
}
},
"ArtNetTriggerOEMCode": {
"name": "ArtNetTriggerOEMCode",
"description": "OEM Code (hex) for Trigger",
"tip": "The OEM Code to look for to process triggers. The payload will be a FPP Command JSON.",
"restart": 1,
"reboot": 0,
"default": "0x21s00",
"type": "text",
"size": 6,
"maxlength": "6"
},
"ArtNetTimeCodeEnabled": {
"name": "ArtNetTimeCodeEnabled",
"description": "Enable ArtNet Timecode",
"tip": "Enable ArtNet Timecode",
"restart": 1,
"reboot": 0,
"type": "checkbox",
"default": 0,
"children": {
"1": [
"ArtNetTimeCodeType",
"ArtNetTimeCodeHourIsIndex",
"ArtNetTimeCodeTarget",
"ArtNetSyncPlaylist"
]
}
},
"ArtNetTimeCodeProcessing": {
"name": "ArtNetTimeCodeProcessing",
"description": "Time Code Position Processing",
"tip": "How timecodes and playlists are matched",
"restart": 1,
"reboot": 0,
"default": 0,
"type": "select",
"options": {
"Time within full playlist": 0,
"Hour is index": 1,
"1/4 hour is index": 2,
"Time Codes within items": 3
}
},
"ArtNetTimeCodeType": {
"name": "ArtNetTimeCodeType",
"description": "ArtNet TimeCode Type",
"tip": "The format of the TimeCode",
"restart": 1,
"reboot": 0,
"default": 3,
"type": "select",
"options": {
"24fps": 0,
"25fps": 1,
"29.97fps": 2,
"30fps": 3
},
"fppModes": [
"player"
]
},
"ArtNetTimeCodeTarget": {
"name": "ArtNetTimeCodeTarget",
"description": "Target IP Addresses",
"tip": "Target IP Addresses for ArtNet TimeCode (comma separated)",
"default": "255.255.255.255",
"type": "text",
"size": 37,
"maxlength": 256,
"fppModes": [
"player"
]
},
"ArtNetSyncPlaylist": {
"name": "ArtNetSyncPlaylist",
"description": "Playlist to sync the ArtNet TimeCode",
"type": "select",
"default": "",
"optionsURL": "api/playlists",
"optionCanBeBlank": true,
"fppModes": [
"remote"
]
}
}
}