-
Notifications
You must be signed in to change notification settings - Fork 0
/
dropdown.html
134 lines (122 loc) · 5.33 KB
/
dropdown.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
<html>
<head>
<title>TapCap</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<script src="jquery-2.1.4.min.js"></script>
<script src="js/bootstrap.js"></script>
</head>
<body style="width: 400px; margin: 0; padding: 0;">
<div class="container-fluid">
<div class="row">
<div class="col-12 bg-custom p-2" style="height: 45px;">
<img src="images/main-icon-32x32.png">
<span class="text-white">OPTIONS</span>
</div>
<div class="col-12">
<div class="clearfix"></div>
<ul class="nav nav-tabs p-3">
<li class="col-4 btn btn-outline-custom">
<a data-toggle="tab" class="text-dark" href="#menu1">Record</a>
</li>
<li class="col-4 btn btn-outline-custom">
<a data-toggle="tab" class="text-dark" href="#menu3">Video</a>
</li>
<li class="btn col-4 btn-outline-custom">
<a data-toggle="tab" class="text-dark" href="#home">Devices</a>
</li>
</ul>
<div class="tab-content p-2 h-250">
<h1 id="applying-changes"
style="color:green;
font-weight:normal;font-size:14px!important;display:none;">
Applying Changes...
</h1>
<div id="menu1" class="tab-pane fade active show">
<article id="default-section">
<div class="row p-1">
<button class="btn btn-custom col-12 p-1" id="full-screen">
Full Screen & System Audio
</button>
</div>
<div class="row p-1">
<button class="btn btn-custom col-12 p-1" id="selected-tab">
Selected Tab
</button>
</div>
<div class="row p-1">
<button class="btn btn-custom col-12 p-1" id="microphone-screen">
Microphone & Screen
</button>
</div>
<div class="row p-1">
<button class="btn btn-custom col-12 p-1" id="microphone-screen-camera">
Microphone & Screen & Camera
</button>
</div>
<div class="row p-1">
<button class="btn btn-custom col-12 p-1" id="microphone-webcam">
Microphone & Camera
</button>
</div>
<div style="float: right;">
<a href="preview.html" target="_blank"><i>Last Recording</i></a>
</div>
</article>
<article id="stop-section">
<div class="row">
<button class="btn btn-custom col-12" id="stop-recording">
Stop Recording
</button>
</div>
</article>
</div>
<div id="menu3" class="tab-pane fade h-250">
<lael>Video Codecs</label><br>
<div id="videoCodec">
<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>
<label for="videoMaxFrameRates">Video Framerates</label><br>
<select id="videoMaxFrameRates" size=4 class="col-12">
<option selected>None</option>
<option>30</option>
<option>25</option>
<option>15</option>
</select>
<label for="videoBitsPerSecond">Video Bitrates</label><br>
<select id="bitsPerSecond" size=5 class="col-12">
<option value="default" selected>Default bitrates</option>
<option value="8000000000">1 GB bps</option>
<option value="800000000">100 MB bps</option>
<option value="8000000">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>
</div>
<div id="home" class="tab-pane fade in h-250">
<label for="camera-devices">Select Camera Device</label><br>
<select id="camera-devices" size=5 class="col-12"></select><br>
<label for="microphone-devices">Select Microphone Device</label><br>
<select id="microphone-devices" size=5 class="col-12"></select><br>
<i style="font-size: x-small;" class="text-info">
Note: if devices are not showing correctly please go to
</i>
<a style="font-size: small;" target="_blank" href="options.html"> Options</a>
<i style="font-size: x-small;" class="text-info">
allow access to microphone and camera.
</i>
</div>
</div>
</div>
</div>
<script src="RecordRTC/getAllAudioVideoDevices.js"></script>
<script type="text/javascript" src="options.js"></script>
<script src="dropdown.js"></script>
</body>
</html>