Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Learn Sound-Driven Visuals | Creative Coding Project Showcase
Generative Art with JavaScript and P5.js

bookSound-Driven Visuals

index.html

index.html

copy

To create generative art that responds to sound, you can use the p5.AudioIn class in P5.js. This class captures audio input from your device's microphone, letting your sketch "listen" to the environment or your voice. Once you have microphone input, you can use amplitude analysis to measure the loudness of the incoming sound. The p5.Amplitude object analyzes the audio stream and provides a value between 0 (silent) and 1 (loud), which you can use to drive visual changes in your sketch.

By mapping the current amplitude value to properties like size, color, or position, you can make shapes react dynamically to sound. For example, you might map louder sounds to larger shapes or brighter colors. The map() function is especially useful for converting the amplitude range into suitable values for your visuals. This approach allows you to create immersive audiovisual experiences where your artwork responds in real time to music, speech, or ambient noise.

question mark

What does p5.AudioIn allow you to do in a P5.js sketch?

Select the correct answer

Everything was clear?

How can we improve it?

Thanks for your feedback!

SectionΒ 5. ChapterΒ 1

Ask AI

expand

Ask AI

ChatGPT

Ask anything or try one of the suggested questions to begin our chat

bookSound-Driven Visuals

Swipe to show menu

index.html

index.html

copy

To create generative art that responds to sound, you can use the p5.AudioIn class in P5.js. This class captures audio input from your device's microphone, letting your sketch "listen" to the environment or your voice. Once you have microphone input, you can use amplitude analysis to measure the loudness of the incoming sound. The p5.Amplitude object analyzes the audio stream and provides a value between 0 (silent) and 1 (loud), which you can use to drive visual changes in your sketch.

By mapping the current amplitude value to properties like size, color, or position, you can make shapes react dynamically to sound. For example, you might map louder sounds to larger shapes or brighter colors. The map() function is especially useful for converting the amplitude range into suitable values for your visuals. This approach allows you to create immersive audiovisual experiences where your artwork responds in real time to music, speech, or ambient noise.

question mark

What does p5.AudioIn allow you to do in a P5.js sketch?

Select the correct answer

Everything was clear?

How can we improve it?

Thanks for your feedback!

SectionΒ 5. ChapterΒ 1
some-alt