-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
executable file
·143 lines (118 loc) · 2.97 KB
/
options.html
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
<link href='https://fonts.googleapis.com/css?family=Cutive+Mono' rel='stylesheet' type='text/css'>
<style>
* {
font-family: 'Cutive Mono'!important;
font-size: 20px;
-webkit-user-select:none;
-webkit-user-drag:none;
}
input {
-webkit-user-select:initial;
}
body, html {
padding: 10px;
max-width: 900px;
}
hr {
border:0;
border-bottom: solid #fc00fc 1px;
margin: 0 -18px;
}
label, input {
vertical-align: middle;
}
label, input[type=checkbox] {
cursor: pointer;
}
select {
border: 1px solid black;
padding: 0;
outline:none!important;
border: 1px solid black !important;
width: 50%;
}
body{ background: #f9fafb;
}
option {
background: #f9fafb;
color: black;
text-shadow: none;
outline:none!important;
padding: 2px 5px;
}
option:last-child {
border-bottom: 0;
}
input[disabled], label[disabled] {
cursor: not-allowed!important;
color: #bfbfbf!important;
}
.help-img {
vertical-align: middle;
width: 24px;
height: 24px;
cursor: pointer;
}
blockquote {
font-size: 16px;
border: 1px solid #318db9;
color: #318db9;
padding: 5px 10px;
border-radius: 10px;
box-shadow: -1px -1px 5px 0px rgba(46, 128, 146, 0.75);
}
</style>
<div class="container">
<div class="row">
<h1 id="applying-changes" style="position:absolute;right:10px;top:-10px;color:green;font-weight:normal;font-size:14px!important;display:none;">Applying Changes...</h1>
<h2>Video Codecs:</h2>
<div id="videoCodec" style="display: inline-block;">
<label><input type="radio" checked>Default</label>
<label><input type="radio">VP8</label>
<label><input type="radio">VP9</label>
<label><input type="radio">H264</label>
<label><input type="radio">MKV</label>
</div>
<br>
<br>
<hr>
<br>
<br>
<h2>Select Camera Device</h2>
<select id="camera-devices" size=5></select>
<br><br>
<hr>
<h2>Select Microphone Device</h2>
<select id="microphone-devices" size=5></select>
<br><br>
<hr>
<br>
<label for="videoMaxFrameRates">Video Framerates</label><br>
<select id="videoMaxFrameRates" size=4>
<option>None</option>
<option selected>30</option>
<option>25</option>
<option>15</option>
</select>
<br />
<br />
<hr>
<br>
<label for="videoBitsPerSecond">Bitrates</label><br>
<select id="bitsPerSecond" size=5>
<option value="default">Default bitrates</option>
<option value="8000000000">1 GB bps</option>
<option value="800000000">100 MB bps</option>
<option value="8000000" selected>1 MB bps</option>
<option value="800000">100 KB bps</option>
<option value="8000">1 KB bps</option>
<option value="800">100 Bytes bps</option>
</select>
<br>
<br />
<hr>
<br />
<script src="RecordRTC/getAllAudioVideoDevices.js"></script>
<script src="options.js"></script>
</div>
</div>