xxxxxxxxxx
40
let fft;
let waveform = []; let bins = 1024; let r = 300;
function setup() {
createCanvas(1024, 600);
mic = new p5.AudioIn();
mic.start();
fft = new p5.FFT(0.8, bins);
fft.setInput(mic);
}
function draw() {
background('red');
waveform = fft.waveform();
spectrum = fft.analyze();
let vol = fft.getEnergy(20, 140);
fill('white');
stroke('white');
// Freq domain
for (let i = 0; i < spectrum.length; i++) {
let y = map(spectrum[i], 0, 255, height / 2, 0);
strokeWeight(4);
line(i, 0, i, y);
}
strokeWeight(1);
fill('black');
textAlign(CENTER);
textSize(1024);
text(Math.round(vol), width / 2 + 200, height / 2 + 100);
// Time domain
for (let i = 0; i < waveform.length; i++) {
let y = height / 2 + map(waveform[i], -1, 1, -r, r);
ellipse(i, y, 5, 15);
}
}