-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathdata.json
executable file
·218 lines (217 loc) · 6.5 KB
/
data.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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
[
{
"title": "What do you want to share?",
"description": "",
"answers": [
{
"label": "Webcam",
"type": "button",
"params": "?webcam"
},
{
"label": "Screen",
"type": "button",
"params": "?screenshare"
},
{
"label": "Allow both",
"type": "button",
"params": "?"
},
{
"label": "File",
"type": "button",
"params": "?fs"
}
]
},
{
"title": "Camera quality",
"description": "Tell OBS Ninja what resolution and fps target you want for your camera. These are not guaranteed, but subject to the system's abilities",
"answers": [
{
"label": "Up to 1080p60",
"type": "button",
"params": "&quality=0"
},
{
"label": "Up to 720p30",
"type": "button",
"params": "&quality=1"
},
{
"label": "Up to 360p30",
"type": "button",
"params": "&quality=2"
},
{
"label": "Use default",
"type": "button",
"params": ""
}
]
},
{
"title": "Stereo sound",
"description": "Set resolution and fps will be requested but are not guaranteed and depend on the guest's hardware. Warning: audio normalization (auto-gain), noise cancellation and echo cancellation will not be disabled.",
"answers": [
{
"label": "Default",
"type": "button",
"params": ""
},
{
"label": "Stereo",
"type": "button",
"params": "&stereo=1"
}
]
},
{
"title": "Auto start with Default Camera and Mic",
"description": "With this option, the user's default camera and mic are used, bypassing the selection page. This can be changed after the fact by selecting the gear icon.",
"answers": [
{
"label": "Don't auto start",
"type": "button",
"params": ""
},
{
"label": "Auto start",
"type": "button",
"params": "&autostart&device=1"
}
]
},
{
"title": "Guest label",
"description": "You can set a label for this invite. OBS Studio will use it when you drag the link there; Browser tab will be named after it.",
"answers": [
{
"label": "No label",
"type": "button",
"params": ""
},
{
"label": "Let guest decide",
"type": "button",
"params": "&label="
},{
"label": "Set label",
"type": "text",
"params": "&label="
}
]
},
{
"title": "Room selection",
"description": "Multiple guests can hear and see each other if they join the same room.",
"answers": [
{
"label": "Use named room",
"type": "text",
"params": "&room="
},
{
"label": "No room",
"type": "button",
"params": ""
}
]
},
{
"title": "Control what the guest see",
"description": "Broadcast Mode makes it so guests in a room can only see the video feed from the director. Audio between all the participants remains. This saves on guest's bandwidth and CPU usage. A custom push ID can also be used.",
"answers": [
{
"label": "Enable Broadcast Mode",
"type": "button",
"params": "&broadcast"
},
{
"label": "Guests see everyone",
"type": "button",
"params": ""
},
{
"label": "Custom Broadcast PushID",
"type": "text",
"params": "&broadcast="
},
{
"label": "I'm not using a room",
"type": "button",
"params": ""
}
]
},
{
"title": "Mute mic when joining?",
"description": "",
"answers": [
{
"label": "Start muted",
"type": "button",
"params": "&muted"
},
{
"label": "Start unmuted",
"type": "button",
"params": ""
}
]
},
{
"title": "Local video preview",
"description": "",
"answers": [
{
"label": "Show",
"type": "button",
"params": ""
},
{
"label": "Hide",
"type": "button",
"params": "&nopreview"
}
]
},
{
"title": "Video Codec",
"description": "The Default Codec (VP8) is a good balance for most. In certain rare situations, H.264 can be hardware accelerated and VP9 is only intended for those who can cope with the higher CPU usage in exchange for better quality at lower bitrates. Mobile users should stick to the default.",
"answers": [
{
"label": "Default",
"type": "button",
"params": ""
},
{
"label": "H.264",
"type": "button",
"params": "&codec=h264"
},
{
"label": "VP9",
"type": "button",
"params": "&codec=vp9"
}
]
},
{
"title": "Push ID",
"description": "Push IDs must be unique. Supply your own custom ID or let the system generate a random ID for you. This is useful is you want your guests to have reusable links.",
"answers": [
{
"label": "random push id",
"type": "button",
"params": "push="
},
{
"label": "CustomPushID",
"type": "text",
"params": "push="
}
]
}
]