xxxxxxxxxx
54
let mic, peak, wav;
let waves = [];
function setup() {
createCanvas(500, 800);
textAlign(CENTER);
angleMode(DEGREES);
mic = new p5.AudioIn();
fft = new p5.FFT();
fft.setInput(mic);
mic.start();
}
function draw() {
background(0);
fill(255);
let micLevel = 20 * Math.log10(mic.getLevel());
peak = color(0, 255, 0);
if (micLevel > 0.0) {
peak = color(255, 0, 0);
}
wav = fft.analyze();
push();
translate(width / 2, height / 2);
rotate(-90);
noFill();
stroke(255);
strokeWeight(2)
beginShape();
for (let i = 0; i < wav.length; i++) {
let amps = wav[i];
let angle = map(i, 0, wav.length, 0, 360);
let r = map(amps, 0, 1024, 31.5, 8000);
let x = r * cos(angle);
let y = r * sin(angle);
vertex(x * 5, y * 5);
stroke(peak);
}
endShape();
pop();
textSize(50);
textStyle(BOLD);
fill(peak);
noStroke();
text(micLevel.toFixed(2) + " dB", width / 2, height / 2 + 10);
}