We closed this forum 18 June 2010. It has served us well since 2005 as the ALPHA forum did before it from 2002 to 2005. New discussions are ongoing at the new URL http://forum.processing.org. You'll need to sign up and get a new user account. We're sorry about that inconvenience, but we think it's better in the long run. The content on this forum will remain online.
IndexProgramming Questions & HelpSound,  Music Libraries › Error "Jikes could not find package krister.E
Page Index Toggle Pages: 1
Error "Jikes could not find package krister.E (Read 448 times)
Error "Jikes could not find package krister.E
Nov 13th, 2008, 9:31am
 
I am new to this, so bear with me. I downloaded the Ess library and placed the "Ess" folder in the Processing0135>Libraries folder as instructed. My code, below, wherein I'm trying to play an aif sound file, Produces a string of errors.

What's wrong?

Thanks,

George

import krister.Ess.*;
AudioChannel myChannel;

void setup() {
 size(256, 200);
//Start up Ess
 Ess.start(this);
 // load "hawkins.aif" into a new channel
 myChannel = new AudioChannel("hawkins.aif");
 myChannel.play(Ess.FOREVER);
}

void draw() {
}

public void stop() {
 Ess.stop();// when program stops, stop Ess too
 super.stop();
}
Re: Error "Jikes could not find package krist
Reply #1 - Nov 13th, 2008, 6:52pm
 
I'd strongly recommend using release 0156 of Processing (release 0135 is nearly a year old, and there have been 21 releases since), along with the Minim library. Minim is now included as part of the Processing download and is being maintained on a regular basis.
Page Index Toggle Pages: 1