-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
169 lines (147 loc) · 4.23 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Delta BugHunter</title>
<link rel="stylesheet" type="text/css" href="styles/options.css" />
<script type="text/javascript" src="libs/jquery-3.3.1.min.js"></script>
</head>
<body>
<p id="applying-changes">Applying Changes...</p>
<article>
<h1>Customize Delta BugHunter Extension</h1>
<table>
<tr>
<td><span class="table-titles">Video Options</span></td>
<td></td>
</tr>
<tr>
<td>
Select a microphone device:
</td>
<td>
<select id="microphone-devices"></select>
</td>
</tr>
<tr>
<td>
Select video codecs:
</td>
<td>
<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>
</td>
</tr>
<tr class="hidden">
<td>
Camera resolutions:
</td>
<td>
<select id="videoResolutions">
<option value="1920x1080" selected>1920p</option>
<option value="1280x720">720p</option>
<option value="640x480">480p</option>
<option value="640x360">360p</option>
<option value="320x240">240p</option>
<option value="default">Default</option>
</select>
</td>
</tr>
<tr>
<td>
Select video frame rates:
</td>
<td>
<select id="videoMaxFrameRates">
<option selected>None</option>
<option>30</option>
<option>25</option>
<option>15</option>
</select>
</td>
</tr>
<tr>
<td>
Select video bitrates:
</td>
<td>
<select id="bitsPerSecond">
<option value="default" selected>Default bitrates</option>
<!-- <option value="8000000000">1 GB per second</option>
<option value="800000000">100 MB per second</option>
<option value="8000000">1 MB per second</option> -->
<option value="800000">100 KB per second</option>
<option value="8000">1 KB per second</option>
<option value="800">100 Bytes per second</option>
</select>
</td>
</tr>
<tr>
<td>
Fix video seeking issues?
</td>
<td>
<input type="checkbox" id="fixVideoSeekingIssues">
</td>
</tr>
<tr>
<td><span class="table-titles">Redmine Default Options</span></td> <td></td>
</tr>
<tr>
<td>
Project
</td>
<td>
<select id="projects">
</select>
</td>
</tr>
<tr>
<td>
Priority
</td>
<td>
<select id="priorities">
</select>
</td>
</tr>
<tr>
<td>
Tracker (optional)
</td>
<td>
<select id="trackers">
</select>
</td>
</tr>
<tr>
<td>
Category (optional)
</td>
<td>
<select id="categories">
</select>
</td>
</tr>
<tr>
<td>
Assign to (optional)
</td>
<td>
<select id="assignables">
</select>
</td>
</tr>
</table>
</article>
<script src="RecordRTC/getAllAudioVideoDevices.js"></script>
<script src="options.js"></script>
<script type="text/javascript" src="redmine/redminemethods.js"></script>
<script type="text/javascript" src="redmine/projects.js"></script>
</body>
</html>