-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathscript.js
More file actions
79 lines (40 loc) · 1.31 KB
/
script.js
File metadata and controls
79 lines (40 loc) · 1.31 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
68
69
70
71
72
73
74
75
var speechRecognition = window.webkitSpeechRecognition
var recognition = new speechRecognition()
var textbox = $("#textbox")
var instructions = $("#instructions")
var content = ''
recognition.continuous = true
recognition.onstart = function() {
instructions.text("Ses işleniyor")
}
recognition.onspeechend = function() {
instructions.text("Ses yok")
}
recognition.onerror = function() {
instruction.text("Tekrar deneyiniz")
}
recognition.onresult = function(event) {
var current = event.resultIndex;
var transcript = event.results[current][0].transcript
content += transcript
textbox.val(content)
}
$("#start-btn").click(function(event) {
recognition.start()
})
textbox.on('input', function() {
content = $(this).val()
})
function downloadLogFile() {
const a = document.createElement('a');
a.href = 'data:text/plain,' + encodeURIComponent(document.getElementById('textbox').value);
var now = new window.Date();
var Year = now.getFullYear();
var Month = (("0" + (now.getMonth() + 1)).slice(-2));
var Date = ("0" + now.getDate()).slice(-2);
var Hour = ("0" + now.getHours()).slice(-2);
var Min = ("0" + now.getMinutes()).slice(-2);
var Sec = ("0" + now.getSeconds()).slice(-2);
a.download = 'log_' + Year + Month + Date + '_' + Hour + Min + Sec + '.txt';
a.click();
}