-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathAudio.js
72 lines (52 loc) · 1.36 KB
/
Audio.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
/**
* Handling audio output with Web Audio.
*/
function Audio() {
var self = this;
//
var audioContext = AudioContext || webkitAudioContext;
if(audioContext === undefined)
throw new Error('This browser seems not to support AudioContext.');
//
this.bufferLength = 4096;
this.buffer = new Float32Array(this.bufferLength);
this.bufferIndex = 0;
//
this.context = new audioContext();
this.scriptProcessor = this.context.createScriptProcessor(this.bufferLength, 0, 1);
this.scriptProcessor.onaudioprocess = function(e) {
self.onAudioProcess(e);
};
this.scriptProcessor.connect(this.context.destination);
this.sampleRate = this.context.sampleRate;
}
Object.assign(Audio.prototype, {
isAudio: true,
/**
*
*/
getSampleRate: function() {
return this.sampleRate;
},
/**
*
*/
onAudioProcess: function(e) {
var data = e.outputBuffer.getChannelData(0);
for(var i = 0, il = this.bufferLength; i < il; i++)
data[i] = this.buffer[i];
// @TODO: Fix me
for(var i = this.bufferIndex, il = this.bufferLength; i < il; i++)
data[i] = this.bufferIndex === 0 ? 0.0 : this.buffer[this.bufferIndex - 1];
this.bufferIndex = 0;
},
/**
*
*/
push: function(data) {
if(this.bufferIndex >= this.bufferLength)
return;
this.buffer[this.bufferIndex++] = data;
}
});
export {Audio};