-
Notifications
You must be signed in to change notification settings - Fork 0
/
UI_Config.json
115 lines (89 loc) · 2.67 KB
/
UI_Config.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
{
"output_file": "settings.json",
"OnlyLive": {
"type": "checkbox",
"value": false,
"label": "Only when live",
"tooltip": "Command is only active when stream is live",
"group": "General"
},
"TTStext": {
"type": "textbox",
"value": "!tts",
"label": "Command to convert whisper to TTS",
"tooltip": "",
"group": "General"
},
"TTSstart": {
"type": "textbox",
"value": "!ttsstart",
"label": "Command to enable TTS control",
"tooltip": "Follow this command by the name of the user to whom you want to give control. (No @)",
"group": "General"
},
"TTSend": {
"type": "textbox",
"value": "!ttsend",
"label": "Command to end TTS control",
"tooltip": "",
"group": "General"
},
"ttsSmsg": {
"type": "textbox",
"value": "{0}, you are now in control of TTS. Whisper: {1} followed by the messages. Please do not abuse!",
"label": "Start message",
"tooltip": "Message to viewer controlling TTS when starting. {0}: viewer, {1}: command",
"group": "General"
},
"ttsEmsg": {
"type": "textbox",
"value": "{0}, you can no longer control TTS. Thank you.",
"label": "End message",
"tooltip": "Message to viewer controlling TTS when ends. {0}: viewer",
"group": "General"
},
"Permission": {
"type": "dropdown",
"value": "Caster",
"items": ["Everyone","Regular","Subscriber","GameWisp Subscriber","User_Specific","Min_Rank","Min_Points","Min_Hours","Moderator","Editor","Caster"],
"label": "Permission level",
"tooltip": "Set the permission level for the star/end commands",
"group": "General"
},
"PermissionInfo": {
"type": "textbox",
"value": "",
"label": "Permission level info",
"tooltip": "Set the user, rank or tier for permission",
"group": "General"
},
"Voice": {
"group": "General",
"items": [
"Microsoft Hazel Desktop","Microsoft David Desktop","Microsoft Zira Desktop"],
"label": "Voice",
"tooltip": "Select speech voice",
"type": "dropdown",
"value": "Microsoft Hazel Desktop"
},
"Rate": {
"group": "General",
"label": "Rate [-10,10]",
"max": 10,
"min": -10,
"ticks": 1,
"tooltip": "Rate of speech",
"type": "slider",
"value": 0
},
"Volume": {
"group": "General",
"label": "Volume",
"max": 100,
"min": 1,
"ticks": 1,
"tooltip": "Volume of speech",
"type": "slider",
"value": 50.00
},
}