This repository has been archived by the owner on Nov 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (48 loc) · 1.5 KB
/
index.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
<html>
<head>
<link rel="stylesheet" href="style.css" />
<title>Sanskrit Voice to Text Application</title>
</head>
<body>
<div class="container">
<div class="heading">
<img class="heading__img" width="100" src="assets/mice_40.png" alt="" />
<h1 class="heading__h1">वाक्प्रत्यभिज्ञा<br>Sanskrit Voice to Text Application</h1>
</div>
<br />
<main>
<textarea
id="myTextarea"
name="text box"
id=""
cols="70"
rows="10"
placeholder="Speak Now..."
></textarea>
<img
class="mic mic_stop"
src="assets/mic-stopped.png"
width="70"
id="btn-start-recording"
/>
<img
class="mic mic_start hide"
src="assets/mic-started.png"
width="70"
id="btn-start-recording"
/>
<button id="btn-stop-recording" class="disable" disabled>
<img width="70" src="assets/stop-button.png" alt="">
</button>
<audio controls muted playsinline hidden></audio>
</main>
<script src="https://www.WebRTC-Experiment.com/RecordRTC.js"></script>
<script src="https://www.webrtc-experiment.com/hark.js"></script>
<script src="https://www.webrtc-experiment.com/common.js"></script>
<script src="app.js"></script>
<footer style="margin-top: 20px">
<small id="send-message"></small>
</footer>
</div>
</body>
</html>