-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvisualizer.js
146 lines (122 loc) · 4.64 KB
/
visualizer.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
function fillCanvas(ctx, width, height) {
ctx.fillStyle = "rgba(0,0,0,0.8)";
ctx.fillRect(0, 0, width, height);
}
function initializeCanvas() {
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
}
function createAudioContext() {
let audioCtx = new (window.AudioContext || window.webkitAudioContext)();
return audioCtx;
}
function createAudioAnalyser(context) {
let analyser = context.createAnalyser();
return analyser;
}
function createAudioSource(context, audioSource) {
let src = context.createMediaElementSource(audioSource);
return src;
}
function setFastFourierTransformSize(analyser, fftSize) {
analyser.fftSize = fftSize;
}
window.onload = function() {
const file = document.getElementById("file-input");
const canvas = document.getElementById("canvas");
const filename = document.getElementById("filename");
const audio = document.getElementById("audio");
file.onchange = function() {
// set up canvas for displaying visualization
initializeCanvas();
const WIDTH = canvas.width;
const HEIGHT = canvas.height;
const FFT = document.getElementById("fft-input").options[document.getElementById("fft-input").selectedIndex].value;
const GRAPH = document.getElementById("graph-input").options[document.getElementById("graph-input").selectedIndex].value;
let ctx = canvas.getContext("2d");
let files = this.files;
audio.src = URL.createObjectURL(files[0]);
let name = files[0].name
filename.innerText = `${name}`
let context = createAudioContext();
let src = createAudioSource(context, audio);
let analyser = createAudioAnalyser(context); // create an analyser for the audio context
// connect AnalyserNode to audio source
src.connect(analyser);
analyser.connect(context.destination);
// set fftSize based on selection
setFastFourierTransformSize(analyser, FFT);
let bufferLength = analyser.frequencyBinCount;
let dataArray = new Uint8Array(bufferLength);
let x;
function drawWave() {
fillCanvas(ctx, WIDTH, HEIGHT); // sets color for canvas
let drawVisual = requestAnimationFrame(drawWave);
analyser.getByteTimeDomainData(dataArray);
ctx.lineWidth = 2;
ctx.strokeStyle = 'rgb(255, 255, 255)';
ctx.beginPath();
let sliceWidth = WIDTH * 1.0 / bufferLength;
x = 0;
for(let i = 0; i < bufferLength; i++) {
let v = dataArray[i] / 128.0;
let y = v * HEIGHT/2;
if(i === 0) {
ctx.moveTo(x, y);
} else {
ctx.lineTo(x, y);
}
x += sliceWidth;
}
ctx.lineTo(canvas.width, canvas.height/2);
ctx.stroke();
};
function drawBar() {
fillCanvas(ctx, WIDTH, HEIGHT); // sets color for canvas
let barWidth = (WIDTH / bufferLength) * 2.5;
let barHeight;
let drawVisual = requestAnimationFrame(drawBar);
x = 0;
analyser.getByteFrequencyData(dataArray);
let r, g, b;
let bars = 118;
for (let i = 0; i < bars; i++) {
barHeight = dataArray[i]*2.5;
if(dataArray[i] > 200) {
r = 255
g = 255
b = 0
} else if(dataArray[i] > 160) {
r = 255
g = 254
b = 159
} else if(dataArray[i] > 120) {
r = 253
g = 156
b = 253
} else if(dataArray[i] > 80) {
r = 204
g = 205
b = 253
} else if(dataArray[i] > 40) {
r = 157
g = 255
b = 254
} else {
r = 255
g = 255
b = 255
}
ctx.fillStyle = `rgb(${r},${g},${b})`;
ctx.fillRect(x, (HEIGHT - barHeight), barWidth, barHeight);
x += barWidth + 10
}
}
audio.play();
if(GRAPH == "Wave/Oscillation") {
drawWave();
} else {
drawBar();
}
};
};