-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSoundMagicDirective.js
217 lines (193 loc) · 6.86 KB
/
SoundMagicDirective.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
app.directive('soundMagic', function($window) {
return function(scope, element, attrs) {
var rectangularWindow = function(windowSize) {
var samples = new Float64Array(windowSize);
for (var i=0; i<windowSize; ++i) {
samples[i] = 1.0;
}
return samples;
};
var hammingWindow = function(windowSize) {
var sum = 0.0;
var samples = new Float64Array(windowSize);
var TAU_FACTOR = Math.PI * 2.0 / (windowSize - 1);
var i;
for (i=0; i<windowSize; ++i) {
samples[i] = 0.54 - (0.46 * Math.cos(TAU_FACTOR * i));
sum += samples[i];
}
for (i=0; i<windowSize; ++i) {
samples[i] /= sum;
}
return samples;
};
var plotWaveform = function(canvas, buffer) {
canvas.width = canvas.width; // Clear the canvas
var context = canvas.getContext('2d');
context.moveTo(0, canvas.height/2);
var increment = canvas.width/buffer.length;
_(buffer)
.each(function(value, idx, collection) {
context.lineTo(idx*increment, (value+1)*canvas.height/2);
});
context.lineWidth = 1;
context.strokeStyle = "rgb(0,0,200)";
context.stroke();
};
var plotSpectrogram = function(canvas, spectrogram) {
canvas.width = canvas.width; // Clear the canvas
var context = canvas.getContext('2d');
var height = canvas.height;
var numFrames = spectrogram.length;
var binPixelWidth = Math.max(~~(canvas.width/spectrogram.length), 2);
var binPixelHeight = Math.max(~~(canvas.height/spectrogram[0].length), 1);
var normFactor = 10.0 / _(spectrogram).map(_.max).max().value();
for (var f=0; f<numFrames; ++f) {
var frame = spectrogram[f];
var numBins = frame.length;
for (var i=0; i<numBins; ++i) {
var intensity = Math.min(~~(frame[i]*255 * normFactor), 255);
context.fillStyle = 'rgb('+intensity+','+intensity+','+intensity+')';
context.fillRect(f*binPixelWidth, height-(i-1)*binPixelHeight, binPixelWidth, binPixelHeight);
}
}
};
var getSpectrogram = function(buffer, sampleRate, fftsize, hopsize) {
hopsize = hopsize || fftsize;
var spectrogram = [];
var fft = audioLib.FFT(sampleRate, fftsize);
var bufferLen = buffer.length;
var numBuffers = Math.floor((bufferLen-fftsize) / hopsize) + 1;
var windowSamples = hammingWindow(fftsize);
var start = 0;
var index;
var i,j;
var spectrum;
for (i=0; i<numBuffers-1; ++i) {
index = start;
for (j=0; j<fftsize; ++j) {
fft.pushSample(buffer[index++]*windowSamples[j]);
}
//NOTE: audioLib.FFT gives us the magnitude spectrum
spectrum = new Float64Array(fft.spectrum);
for (j=0; j<fftsize; ++j) {
spectrum[j] *= fftsize; //HACK for normalization
}
spectrogram.push(spectrum);
start += hopsize;
}
// Handle the final frame as a special case to deal with padding
index = start;
for (j=0; j<fftsize; ++j) {
if (index < bufferLen) {
fft.pushSample(buffer[index++]*windowSamples[j]);
} else {
fft.pushSample(0);
}
}
spectrum = new Float64Array(fft.spectrum);
for (j=0; j<fftsize; ++j) {
spectrum[j] *= fftsize; //HACK for normalization
}
spectrogram.push(spectrum);
return spectrogram;
};
scope.processAudio = function(processedCallback) {
var soundFile = scope.tab.file;
var soundAsset = AV.Asset.fromFile(soundFile);
soundAsset.on('error', function(e) {
scope.alerts.push({ msg: 'An error occurred while reading the file: ' + e, type: 'danger' });
});
// var timeDomainCanvas = document.createElement('canvas');
// timeDomainCanvas.style.width = '100%';
// timeDomainCanvas.style.height = '9em';
// var spectrogramCanvas = document.createElement('canvas');
// spectrogramCanvas.style.width = '100%';
// spectrogramCanvas.style.height = '9em';
//
// element.append(timeDomainCanvas);
// element.append(spectrogramCanvas);
soundAsset.decodeToBuffer(function(buffer) {
if (buffer.length > 0) {
var fftsize = scope.params.windowSize;
var hopsize = Math.max(1, scope.params.hopSize);
var sampleRate = soundAsset.format.sampleRate;
scope.spectrogram = getSpectrogram(buffer, sampleRate, fftsize, hopsize);
scope.peaks = mqAudio.detectPeaks(scope.spectrogram, sampleRate, scope.params.threshold, scope.params.maxPeaks);
scope.partials = mqAudio.trackPartials(scope.peaks, scope.params.matchDelta);
// Create playback parameters
scope.sampleRate = sampleRate;
scope.synthesize = function(partials) {
return mqAudio.synthesize(partials, hopsize, sampleRate);
};
if (processedCallback) {
processedCallback();
}
}
});
};
scope.addPartials = function(partials) {
scope.partials = scope.partials.concat(partials);
};
scope.removePartials = function(partials) {
scope.partials = _.difference(scope.partials, partials);
};
// Takes in audio samples (in floating-point representation)
// and generates a 16-bit PCM .wav buffer with given sample rate
// and the specified number of channels (1 if unspecified)
scope.exportWav = function(samples, sampleRate, numChannels) {
numChannels = numChannels || 1;
// Adapted from RecorderJS
var sampleBytes = samples.length * 2;
var blockAlign = numChannels * 2; // Channel count * bytes per sample
var buffer = new ArrayBuffer(44 + sampleBytes);
var view = new DataView(buffer);
// RIFF
view.setUint8(0, 'R'.charCodeAt(0))
view.setUint8(1, 'I'.charCodeAt(0))
view.setUint8(2, 'F'.charCodeAt(0))
view.setUint8(3, 'F'.charCodeAt(0))
// RIFF chunk length
view.setUint32(4, 36 + sampleBytes, true);
// RIFF type
view.setUint8(8, 'W'.charCodeAt(0))
view.setUint8(9, 'A'.charCodeAt(0))
view.setUint8(10, 'V'.charCodeAt(0))
view.setUint8(11, 'E'.charCodeAt(0))
// Format chunk identifier
view.setUint8(12, 'f'.charCodeAt(0))
view.setUint8(13, 'm'.charCodeAt(0))
view.setUint8(14, 't'.charCodeAt(0))
view.setUint8(15, ' '.charCodeAt(0))
// Format chunk length
view.setUint32(16, 16, true);
// Sample format (raw)
view.setUint16(20, 1, true);
// Channel count
view.setUint16(22, numChannels, true);
// Sample rate
view.setUint32(24, sampleRate, true);
// Byte rate (sample rate * block alignment)
view.setUint32(28, sampleRate * blockAlign, true);
// Block alignment (channel count * bytes per sample)
view.setUint16(32, blockAlign, true);
// Bits per sample
view.setUint16(34, 16, true);
// Data chunk identifier
view.setUint8(36, 'd'.charCodeAt(0))
view.setUint8(37, 'a'.charCodeAt(0))
view.setUint8(38, 't'.charCodeAt(0))
view.setUint8(39, 'a'.charCodeAt(0))
// Data chunk length
view.setUint32(40, sampleBytes, true);
// Write the data
// Convert from floating-point PCM to 16-bit PCM and write
var offset = 44;
for (var i=0; i<samples.length; i++, offset+=2){
var s = Math.max(-1, Math.min(1, samples[i]));
view.setInt16(offset, s < 0 ? s * 0x8000 : s * 0x7FFF, true);
}
return view;
};
}
});