i'm wondering if there's any way to play musicfiles with crossfading in between?
i could create two players and a few seconds before 1st track ends, 2nd player loads 2nd track and gets louder.
how can i manage the "getting quieter" and "getting louder" in timed intervals and how can i check the actual playtime and playlength of a track?
when a song has a lot of lyrics the animation gets quite slow and shaky. i want to cut the text off so that only the last ~100 syllables are shown. i've been searching the plugintowers.java for a while but couldnt find a line to add a cut-off.
myPApplet.pushMatrix();
while (wordItr.hasNext()) {
int curWordKey = wordItr.next();
Word curWord = (Word)songWords.get(curWordKey);
if (curWord.getStartFrame() > currentFrame)
continue;
PMatrix3D curWordMatrix = new PMatrix3D();
curWordMatrix.set(curWord.getMatrix());
myPApplet.applyMatrix(curWordMatrix);