-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
339 lines (322 loc) · 11 KB
/
main.js
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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
function globalstartrecording() {
document.getElementById("recorddiv").style.display = "none";
document.getElementById("timer").style.display = "";
document.getElementById("stopdiv").style.display = "";
window.markDate = new Date();
document.addEventListener("DOMContentLoaded", function () {
var absentDivs = document.querySelectorAll("div.absent");
absentDivs.forEach(function (div) {
div.classList.toggle("present");
});
});
updateClock();
}
function updateClock() {
var currDate = new Date();
var diff = currDate - window.markDate;
document.getElementById("timer").innerHTML = format(diff / 1000);
setTimeout(updateClock, 1000);
}
function format(seconds) {
var numhours = parseInt(
Math.floor(((seconds % 31536000) % 86400) / 3600),
10
);
var numminutes = parseInt(
Math.floor((((seconds % 31536000) % 86400) % 3600) / 60),
10
);
var numseconds = parseInt((((seconds % 31536000) % 86400) % 3600) % 60, 10);
return (
(numhours < 10 ? "0" + numhours : numhours) +
":" +
(numminutes < 10 ? "0" + numminutes : numminutes) +
":" +
(numseconds < 10 ? "0" + numseconds : numseconds)
);
}
function globalstoprecording() {
document.getElementById("stopdiv").style.display = "none";
document.getElementById("timer").style.display = "none";
document.getElementById("audiodiv").style.display = "";
}
function globalsubmit() {
document.getElementById("audiodiv").style.display = "none";
document.getElementById("completediv").style.display = "";
setTimeout("window.location.href = '[redirect page]'", 5000);
}
function globalrestart() {
document.getElementById("audiodiv").style.display = "none";
document.getElementById("recorddiv").style.display = "";
}
var record = document.getElementById("record");
var stop = document.getElementById("stop");
//var play = document.getElementById("play");
var audio = document.getElementById("audio");
//var downWav = document.getElementById("downWav");
//var downPcm = document.getElementById("downPcm");
var recorder = null;
// 录制
record.addEventListener("click", function () {
if (recorder !== null) recorder.close();
Recorder.init(function (rec) {
recorder = rec;
recorder.start();
});
});
// 停止
stop.addEventListener("click", function () {
if (recorder === null) return alert("請先錄音");
recorder.stop();
recorder.play(audio);
});
var form = document.getElementById("dataurl-form");
form.addEventListener("submit", function (e) {
e.preventDefault();
document.getElementById("audiodiv").style.display = "none";
document.getElementById("completediv").style.display = "";
setTimeout("window.location.href = '[redirect page]'", 5000);
var data = new FormData(form);
var action = e.target.action;
fetch(action, {
method: "POST",
body: data,
}).then(function () {
alert("Success!");
});
});
// 播放
//play.addEventListener("click", function() {
// if (recorder === null) return alert("请先录音");
// recorder.play(audio);
//});
// 下载 wav
//downWav.addEventListener("click", function() {
// if (recorder === null) return alert("请先录音");
// var src = recorder.wavSrc();
// downWav.setAttribute("href", src);
//});
// 下载 pcm
//downPcm.addEventListener("click", function() {
// if (recorder === null) return alert("请先录音");
// var src = recorder.pcmSrc();
// downPcm.setAttribute("href", src);
//});
(function (window) {
window.URL = window.URL || window.webkitURL;
navigator.getUserMedia =
navigator.getUserMedia ||
navigator.webkitGetUserMedia ||
navigator.mozGetUserMedia ||
navigator.msGetUserMedia ||
navigator.mediaDevices.getUserMedia.bind(navigator.mediaDevices);
window.audioBufferSouceNode = null;
var Recorder = function (stream, config) {
//var context = new (window.AudioContext || window.webkitAudioContext)();
config = config || {};
config.channelCount = 1;
config.numberOfInputChannels = config.channelCount;
config.numberOfOutputChannels = config.channelCount;
config.sampleBits = config.sampleBits || 16;
config.sampleRate = config.sampleRate || 8000;
config.bufferSize = 4096; //创建缓存,用来缓存声音
var audioInput, volume, recorder, audioData;
function initializeAudio() {
context = new (window.AudioContext || window.webkitAudioContext)();
audioInput = context.createMediaStreamSource(stream);
volume = context.createGain();
audioInput.connect(volume);
recorder = context.createScriptProcessor(
config.bufferSize,
config.channelCount,
config.channelCount
);
audioData = {
size: 0, //录音文件长度
buffer: [], //录音缓存
inputSampleRate: context.sampleRate, //输入采样率
inputSampleBits: 16, //输入采样数位 8, 16
outputSampleRate: config.sampleRate, //输出采样率
oututSampleBits: config.sampleBits, //输出采样数位 8, 16
input: function (data) {
// 实时存储录音的数据
this.buffer.push(new Float32Array(data)); //Float32Array
this.size += data.length;
},
getRawData: function () {
//合并压缩
//合并
var data = new Float32Array(this.size);
var offset = 0;
for (var i = 0; i < this.buffer.length; i++) {
data.set(this.buffer[i], offset);
offset += this.buffer[i].length;
}
// 压缩
var getRawDataion = parseInt(
this.inputSampleRate / this.outputSampleRate
);
var length = data.length / getRawDataion;
var result = new Float32Array(length);
var index = 0,
j = 0;
while (index < length) {
result[index] = data[j];
j += getRawDataion;
index++;
}
return result;
},
covertWav: function () {
// 转换成wav文件数据
var sampleRate = Math.min(
this.inputSampleRate,
this.outputSampleRate
);
var sampleBits = Math.min(this.inputSampleBits, this.oututSampleBits);
var bytes = this.getRawData();
var dataLength = bytes.length * (sampleBits / 8);
var buffer = new ArrayBuffer(44 + dataLength);
var data = new DataView(buffer);
var offset = 0;
var writeString = function (str) {
for (var i = 0; i < str.length; i++) {
data.setUint8(offset + i, str.charCodeAt(i));
}
};
// 资源交换文件标识符
writeString("RIFF");
offset += 4;
// 下个地址开始到文件尾总字节数,即文件大小-8
data.setUint32(offset, 36 + dataLength, true);
offset += 4;
// WAV文件标志
writeString("WAVE");
offset += 4;
// 波形格式标志
writeString("fmt ");
offset += 4;
// 过滤字节,一般为 0x10 = 16
data.setUint32(offset, 16, true);
offset += 4;
// 格式类别 (PCM形式采样数据)
data.setUint16(offset, 1, true);
offset += 2;
// 通道数
data.setUint16(offset, config.channelCount, true);
offset += 2;
// 采样率,每秒样本数,表示每个通道的播放速度
data.setUint32(offset, sampleRate, true);
offset += 4;
// 波形数据传输率 (每秒平均字节数) 单声道×每秒数据位数×每样本数据位/8
data.setUint32(
offset,
config.channelCount * sampleRate * (sampleBits / 8),
true
);
offset += 4;
// 快数据调整数 采样一次占用字节数 单声道×每样本的数据位数/8
data.setUint16(offset, config.channelCount * (sampleBits / 8), true);
offset += 2;
// 每样本数据位数
data.setUint16(offset, sampleBits, true);
offset += 2;
// 数据标识符
writeString("data");
offset += 4;
// 采样数据总数,即数据总大小-44
data.setUint32(offset, dataLength, true);
offset += 4;
// 写入采样数据
data = this.reshapeWavData(sampleBits, offset, bytes, data);
return data;
},
getFullWavData: function () {
// 用blob生成文件
var data = this.covertWav();
return new Blob([data], { type: "audio/wav" });
},
closeContext: function () {
//关闭AudioContext否则录音多次会报错
context.close();
},
reshapeWavData: function (sampleBits, offset, iBytes, oData) {
// 8位采样数位
if (sampleBits === 8) {
for (var i = 0; i < iBytes.length; i++, offset++) {
var s = Math.max(-1, Math.min(1, iBytes[i]));
var val = s < 0 ? s * 0x8000 : s * 0x7fff;
val = parseInt(255 / (65535 / (val + 32768)));
oData.setInt8(offset, val, true);
}
} else {
for (var i = 0; i < iBytes.length; i++, offset += 2) {
var s = Math.max(-1, Math.min(1, iBytes[i]));
oData.setInt16(offset, s < 0 ? s * 0x8000 : s * 0x7fff, true);
}
}
return oData;
},
};
recorder.onaudioprocess = function (e) {
audioData.input(e.inputBuffer.getChannelData(0));
};
}
// 开始录音
this.start = function () {
if (context === undefined) {
initializeAudio();
}
audioInput.connect(recorder);
recorder.connect(context.destination);
//audioInput.connect(recorder);
//recorder.connect(context.destination);
};
// 获取音频文件
this.getBlob = function () {
this.stop();
return audioData.getFullWavData();
};
// 播放
this.play = function (audio) {
//audio.src = this.getBlob().target.result;
var fileReader = new FileReader();
fileReader.onload = function (event) {
var dataURL = event.target.result;
// Use the dataURL as needed
//console.log(dataURL);
audio.src = dataURL;
//replaceAudio(dataURL);
document.getElementById("dataurl").value = audio.src;
};
fileReader.readAsDataURL(this.getBlob());
};
// 停止
this.stop = function () {
recorder.disconnect();
};
this.close = function () {
audioData.closeContext();
};
initializeAudio();
};
// 获取麦克风
Recorder.init = function (callback, config) {
if (callback) {
if (navigator.mediaDevices.getUserMedia) {
navigator.mediaDevices
.getUserMedia({ audio: true })
.then(function (stream) {
var rec = new Recorder(stream, config);
callback(rec);
})
.catch(function (error) {
console.log(error);
});
} else {
alert("不支援錄音功能");
}
}
};
window.Recorder = Recorder;
})(window);