Skip to content

therewasaguy/p5-music-viz

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Visualizing Music with p5.js

This session is for anyone who would like to explore music, visuals and creative coding for the web. We'll demonstrate types of data we can get from digital signal processing using interactive sketches in p5.js and the p5.sound library that builds upon the Web Audio API. We'll explore various methods to map this data onto meaningful visuals that enhance our experience of music.

Slides

Intro Slides

Code Slides

Demos:

##1. Amplitude

##2. Frequency FFT - Fast Fourier Transform

Scaling the FFT

##3. Pitch autocorrelation in the time domain to detect fundamental frequency

#4. Musical Timing sync music to timestamped lyrics

Visualizaitons with the Spotify Audio Analysis API (formerly Echo Nest API)


Libraries

Participants may use whatever tools they wish, but the demos in this repo use the following libraries:

p5.js is a JavaScript library that starts with the original goal of Processing, to make coding accessible for artists, designers, educators, and beginners, and reinterprets this for today’s web.

p5.sound.js is an addon library that brings the Processing approach to the Web Audio API.

p5.dom.js is an addon library that helps us manipulate the DOM.

Setup

Inspiration:


p5.sound Classes That We'll Use For Music Visualizations:

p5.AudioIn - microphone! documentation | source code

p5.SoundFile - load and play .mp3 / .ogg files. documentation | source code

  • loadsound() creates a SoundFile using a Web Audio API buffer. Use during preload(), or with a callback, or with drag and drop.

p5.PeakDetect - detect beats and/or onsets within a frequency range documentation }| source code

p5.Amplitude - Analyze volume (amplitude). documentation | source code

  • .getLevel() returns a Root Mean Square (RMS) amplitude reading, between 0.0 and 1.0, usually peaking at 0.5
  • .smooth()

p5.FFT - Analyze amplitude over time / frequency. documentation | source code

  • .analyze() returns amplitude readings from 0-255 in the frequency domain.
  • .waveform() returns amplitude readings from -1 to 1 in the time domain. demo | source

Music included in the demos/repo:


Dig Deeper into Web Audio Music Visualization...

Deeper into DSP

Music Visualization Inspiration...

Notation

Interactive

Audio

Data Sonification

Musical Form

Lyrics

About

Workshop on music visualization with p5.js from Eyeo '15, previously MozFest '14, NYU ITP

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published