[p5.js] - Create a 3D Audio-Reactive Visualizer with p5.js | SheCodes

[p5.js] - Create a 3D Audio-Reactive Visualizer with p5.js

Learn how to create a 3D audio-reactive visualizer using the p5.js library and its sound and extras libraries for access to sound data.

👩‍💻 Technical question

Asked 2 years ago in p5.js by Andreea-Cristina

How to do an 3D audio-reactive script in p5.js?

🤖 SheCodes Athena says:

Answered in 17.42 seconds

You can use the p5.sound library in p5.js to access sound information, like amplitude or frequency. You can combine this with the p5.js library p5.js-extras to create an audio-reactive 3D script.

The sketch below is a basic example of an 3D audio-reactive visualizer using p5.js. Notice that we use the p5.sound library within the setup() and draw() functions to access sound data.

javascript
Copy code
// create a canvas var cnv = createCanvas(512, 512); // create an audio element using p5.sound var mySound; function preload() { mySound = loadSound('./music.mp3'); } function setup(){ mySound.play(); // play the audio on load // access the amplitude of the sound amplitude = new p5.Amplitude(); } function draw(){ background(51); // get the audio frequency spectrum spectrum = amplitude.getLevel(); // use the spectrum to change the size of the sphere var size = map(spectrum, 0, 1, 0, 500); // draw a 3D sphere push(); noStroke(); fill(255); translate(250,250,-50); sphere(size); pop(); }