forked from steveseguin/vdo.ninja-linkgen
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.json
More file actions
160 lines (160 loc) · 4.34 KB
/
data.json
File metadata and controls
160 lines (160 loc) · 4.34 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
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
[
{
"title": "Push ID",
"description": "Push IDs must be unique. Either let the system pick a random one or input your own and hit the enter key",
"answers": [
{
"label": "random push id",
"type": "button",
"params": "?push="
},
{
"label": "CustomPushID",
"type": "text",
"params": "?push="
}
]
},
{
"title": "What type of share will be allowed?",
"description": "Users can share their camera, screen or a file on the computer",
"answers": [
{
"label": "Webcam",
"type": "button",
"params": "&webcam"
},
{
"label": "Screen",
"type": "button",
"params": "&screenshare"
},
{
"label": "File",
"type": "button",
"params": "&fs"
},
{
"label": "Allow all",
"type": "button",
"params": ""
}
]
},
{
"title": "Quality",
"description": "Set resolution and fps will be requested but are not guaranteed and depend on the guest's hardware",
"answers": [
{
"label": "Default",
"type": "button",
"params": ""
},
{
"label": "Up to 1080p60",
"type": "button",
"params": "&quality=0"
},
{
"label": "Up to 720p60",
"type": "button",
"params": "&quality=1"
},
{
"label": "Up to 360p60",
"type": "button",
"params": "&quality=2"
}
]
},
{
"title": "Auto start",
"description": "Auto starts when the camera/audio device is ready.",
"answers": [
{
"label": "No",
"type": "button",
"params": ""
},
{
"label": "Auto start",
"type": "button",
"params": "&autostart"
}
]
},
{
"title": "Video device",
"description": "You can ask the user what video device to use. Or pick the system default automatically. Or disable the video device (push audio only, for example). Or select a video device based on the name.",
"answers": [
{
"label": "Ask",
"type": "button",
"params": ""
},
{
"label": "Auto default",
"type": "button",
"params": "&videodevice=1"
},
{
"label": "Disable",
"type": "button",
"params": "&videodevice=0"
},
{
"label": "Device name",
"type": "text",
"params": "&videodevice="
}
]
},
{
"title": "Need a room",
"description": "Rooms will let multiple people hear and see each other.",
"answers": [
{
"label": "No room",
"type": "button",
"params": ""
},
{
"label": "Room name",
"type": "text",
"params": "&room="
}
]
},
{
"title": "Start muted",
"description": "Starts with the microphone muted by default",
"answers": [
{
"label": "No",
"type": "button",
"params": ""
},
{
"label": "Muted",
"type": "button",
"params": "&muted"
}
]
},
{
"title": "Hide video preview",
"description": "Disables the local self video preview",
"answers": [
{
"label": "No",
"type": "button",
"params": ""
},
{
"label": "Hide",
"type": "button",
"params": "&nopreview"
}
]
}
]