import processing.sound.*; SoundFile file; void setup() { size(200, 200); background(255); // Load a soundfile from the /data folder of the sketch and play it back file = new SoundFile(this, "pacman_chomp.mp3"); file.play(); } void draw() { }