Skip to content

Instantly share code, notes, and snippets.

@clavis-magna
Last active August 29, 2015 14:19
Show Gist options
  • Save clavis-magna/89262a77c48e4424c273 to your computer and use it in GitHub Desktop.
Save clavis-magna/89262a77c48e4424c273 to your computer and use it in GitHub Desktop.
basic audio trigger using minim
import ddf.minim.*;
Minim minim;
AudioSample skid;
void setup()
{
size(512, 200);
minim = new Minim(this);
// load skid.wav from the data folder
skid = minim.loadSample( "skid.wav" );
}
void draw()
{
background(0);
}
void keyPressed()
{
if ( key == 'k' ){
skid.trigger();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment