p5((s) => {
let image;
let mic;
let fft;
s.preload = function () {
image = s.loadImage(imageURL);
};
s.setup = function () {
let ratio = width / image.width;
s.createCanvas(width, image.height * ratio);
image.resize(width, image.height * ratio);
s.noSmooth();
mic = new pSound.AudioIn();
mic.start();
fft = new pSound.FFT();
fft.setInput(mic);
};
s.draw = function () {
image.loadPixels();
let spectrum = fft.analyze();
let threshold = 50;
for (let index = 0; index < 10000; index++) {
let x = s.floor(s.random(0, image.width));
let y = s.floor(
s.map(spectrum[x % spectrum.length], 0, 255, 0, image.height - 1)
);
let color1 = image.get(x, y);
let color2 = image.get(x, y + 1);
let brightness1 = s.brightness(color1);
let brightness2 = s.brightness(color2);
if (brightness1 > brightness2) {
image.set(x, y, color2);
image.set(x, y + 1, color1);
}
}
image.updatePixels();
s.image(image, 0, 0);
};
})