Is it possible to start a song on processing at a different time?

edited December 2014 in Library Questions

What I mean is when I open my program it the song immediately starts from the beginning but what I need it to do is to start somewhere in the middle but I'm a little stuck on that. Here's my code for the song part...

import ddf.minim.*; Minim minim; AudioPlayer song;

void setup(){ minim = new Minim(this); song = minim.loadFile("uabbsong.mp3"); song.play(); }

Answers

Sign In or Register to comment.