-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathspeech.html
More file actions
67 lines (35 loc) · 1.23 KB
/
speech.html
File metadata and controls
67 lines (35 loc) · 1.23 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>speech to text in javascript</title>
<link rel="stylesheet" href="style.css" type="text/css" media="all" />
<title>Yapay Zeka ile Duygu Kontrolü</title>
</head>
<body>
<video id="video" width="720" height="540" autoplay muted></video>
<div class="container">
<h1 class="text-center mt-5">
Speech to Text in JavaScript
</h1>
<div class="form-group">
<textarea id="textbox" rows="12" class="form-control"></textarea>
</div>
<div class="form-group">
<button id="start-btn" class="btn btn-danger ">
Start
</button>
<p id="instructions"> Start button</p>
</div>
</div>
<div style="text-align: center; opacity: 0.6;">
<input type="button" value="konuşmaları indir" onclick="downloadLogFile(this)">
</div>
<script defer src="./face-api.min.js"></script>
<script defer src="app.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="script.js"></script>
</body>
</html>