Your browser does not support the audio element.
Click the buttons to play or pause the audio.
Play Audio
Pause Audio
Play sound file
Play
Pause
Volume Up
Volume Down
let song; function setup() { song = loadSound('Asaf_Avidan.mp3'); createCanvas(720, 200); background(255, 0, 0); } function mousePressed() { if (song.isPlaying()) { // .isPlaying() returns a boolean song.stop(); background(255, 0, 0); } else { song.play(); background(0, 255, 0); } }