-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
106 lines (106 loc) · 3.22 KB
/
settings.json
File metadata and controls
106 lines (106 loc) · 3.22 KB
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
{
"settingGroups": {
"BackgroundMusic": {
"description": "Background Music Settings",
"settings": [
"BackgroundMusicPlaylist",
"VolumeLevel",
"ShowPlaylist",
"FadeTime",
"BlackoutTime",
"ReturnToPreShow",
"ShuffleMusic"
],
"level": 0
}
},
"attributes": {
"level": 0,
"gatherStats": false,
"restart": 0,
"reboot": 0,
"default": ""
},
"settings": {
"BackgroundMusicPlaylist": {
"name": "BackgroundMusicPlaylist",
"description": "Background Music Playlist",
"tip": "Audio playlist to play over your existing pre-show sequence",
"type": "select",
"optionsURL": "/api/playlists",
"optionsURLIsJSON": true,
"default": "",
"level": 0,
"restart": 0,
"reboot": 0
},
"VolumeLevel": {
"name": "VolumeLevel",
"description": "Background Music Volume",
"tip": "Volume level for background music (0-100%, where 100 is full volume)",
"type": "number",
"min": 0,
"max": 100,
"default": 70,
"level": 0,
"restart": 0,
"reboot": 0
},
"ShowPlaylist": {
"name": "ShowPlaylist",
"description": "Main Show Playlist",
"tip": "The main show playlist to start after fade and blackout",
"type": "select",
"optionsURL": "/api/playlists",
"optionsURLIsJSON": true,
"default": "",
"level": 0,
"restart": 0,
"reboot": 0
},
"FadeTime": {
"name": "FadeTime",
"description": "Fade Out Time (seconds)",
"tip": "Time in seconds to fade out brightness before show",
"type": "number",
"min": 1,
"max": 60,
"default": 5,
"level": 0,
"restart": 0,
"reboot": 0
},
"BlackoutTime": {
"name": "BlackoutTime",
"description": "Blackout Duration (seconds)",
"tip": "Time in seconds to wait in blackout before starting show",
"type": "number",
"min": 0,
"max": 30,
"default": 2,
"level": 0,
"restart": 0,
"reboot": 0
},
"ReturnToPreShow": {
"name": "ReturnToPreShow",
"description": "Return to Pre-Show After Show",
"tip": "Automatically restart background music when show playlist ends",
"type": "checkbox",
"default": "1",
"level": 0,
"restart": 0,
"reboot": 0
},
"ShuffleMusic": {
"name": "ShuffleMusic",
"description": "Shuffle Music Playlist",
"tip": "Randomly shuffle the order of background music tracks to add variety",
"type": "checkbox",
"default": "0",
"level": 0,
"restart": 0,
"reboot": 0
}
}
}