-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.json
121 lines (120 loc) · 3.71 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
{
"settingGroups": {
"SMPTETimeCodeInput": {
"description": "SMPTE TimeCode Support",
"settings": [
"SMPTETimeCodeEnabled",
"SMPTEOutputDevice",
"SMPTEInputDevice",
"SMPTETimeCodeType",
"SMPTETimeCodeProcessing",
"SMPTEInputPlaylist",
"SMPTEResendMultisync"
]
}
},
"settings": {
"SMPTETimeCodeEnabled": {
"name": "SMPTETimeCodeEnabled",
"description": "Enable TimeCodes",
"tip": "Enable SMPTE TimeCode Support",
"restart": 1,
"reboot": 0,
"type": "checkbox",
"default": 0,
"children": {
"1": [
"SMPTETimeCodeType",
"SMPTEOutputDevice",
"SMPTEInputDevice",
"SMPTETimeCodeProcessing",
"SMPTEInputPlaylist",
"SMPTEResendMultisync"
]
}
},
"SMPTETimeCodeType": {
"name": "SMPTETimeCodeType",
"description": "SMPTE TimeCode Type",
"tip": "The format of the TimeCode",
"restart": 1,
"reboot": 0,
"default": 3,
"type": "select",
"options": {
"30fps": 30,
"29.97fps": 29.97,
"25fps": 25,
"24fps": 24
}
},
"SMPTETimeCodeProcessing": {
"name": "SMPTETimeCodeProcessing",
"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
}
},
"SMPTEInputPlaylist": {
"name": "SMPTEInputPlaylist",
"description": "Playlist to sync the SMPTE TimeCode",
"type": "select",
"default": "",
"restart": 1,
"reboot": 0,
"optionsURL": "api/playlists",
"optionCanBeBlank": true,
"fppModes": [
"remote"
]
},
"SMPTEOutputDevice": {
"name": "SMPTEOutputDevice",
"description": "Output Sound Device",
"tip": "The Audio Output Device to send the TimeCode",
"restart": 1,
"reboot": 0,
"default": "",
"type": "select",
"optionsURL": "api/settings/AudioOutputList/options",
"optionCanBeBlank": true,
"fppModes": [
"player"
]
},
"SMPTEInputDevice": {
"name": "SMPTEInputDevice",
"description": "Input Sound Device",
"tip": "The Audio Input Device to receive the TimeCode",
"restart": 1,
"reboot": 0,
"default": "",
"type": "select",
"optionsURL": "api/settings/AudioInputList/options",
"optionCanBeBlank": true,
"fppModes": [
"remote"
]
},
"SMPTEResendMultisync": {
"name": "SMPTEResendMultisync",
"description": "Send FPP MultiSync Packets",
"tip": "Send FPP MultiSync Packets",
"restart": 1,
"reboot": 0,
"type": "checkbox",
"default": 0,
"fppModes": [
"remote"
]
}
}
}