Sound

Setup

For using sound you need to add a library to your folder structure. Download (click on raw and then save) and add it to code/libraries/p5js/libraries/ (if it does not already exist there). In your index.html file update to:

<script src="../libraries/p5js/p5.min.js"></script>
<script src="../libraries/p5js/libraries/p5.svg.js"></script>
<script src="../libraries/p5js/libraries/p5.sound.min.js"></script>

The example sound can be found here.

Modes

With the sound library we can also generate sounds, this document will focus on analysing sounds. Check the documentation for all features.

For analysing sound, we have two options, we use a sound input (microphone) or and audio file. The easiest way and the highest quality is using an audio file.

There is a hack that passes the sound from your computer to a virtual input device. Which for example allows you to pass the audio output of any app the microphone, giving you high flexibility and input quality. But you need software to do so. For windows there is VB-Audio and for mac there was LineIn, but they changed to Audio Hijack which now costs money.

Audio Files

As all external resources, we preload our audio file(s):

let audio;

function preload() {
audio = loadSound('loop.wav');
}

function setup() {
// Will loop the audio track forever
audio.loop();
}

Microphone Input

Some browsers will require you to give the website access to your microphone.

let audio;

function setup() {
// Browser hack for mic activation
getAudioContext().suspend();
userStartAudio();

audio = new p5.AudioIn();
audio.start();
}

Audio Analysis

The audio analysis is the same for the audio file and the microphone input. There are three main analysis features:

Amplitude

let amp;
function setup() {
// audio activation...

amp = new p5.Amplitude();
amp.setInput(audio);
}

function draw() {
const level = amp.getLevel();
circle(width/2, height/2, level, level);
}

FFT

In an FFT sounds are represented as channels, each channel or groups of channels can be use as input for a visualisation:

let fft;
function setup() {
// audio activation...

fft = new p5.FFT();
fft.setInput(audio);
}

function draw() {
let spectrum = fft.analyze();
noStroke();
fill(255, 0, 255);
for (let i = 0; i < spectrum.length; i++){
let x = map(i, 0, spectrum.length, 0, width);
let h = -height + map(spectrum[i], 0, 255, height, 0);
rect(x, height, width / spectrum.length, h )
}

let waveform = fft.waveform();
noFill();
beginShape();
stroke(20);
for (let i = 0; i < waveform.length; i++){
let x = map(i, 0, waveform.length, 0, width);
let y = map( waveform[i], -1, 1, 0, height);
vertex(x,y);
}
endShape();
}

Peak

The peak detection requires fft data:

let peakDetect;
let fft;

function setup() {
// audio activation...

fft = new p5.FFT();
fft.setInput(audio);

peakDetect = new p5.PeakDetect();
}

function draw() {
fft.analyze();
peakDetect.update(fft);

if ( peakDetect.isDetected ) {
fill('rgba(255,0,0,0.5)');
} else {
fill('rgba(0,0,0,0.5)');
}
}

Zurück zum Anfang