Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ClassNotFoundException: ddf.minim.Minim #117

Open
Creativeguru97 opened this issue Jul 7, 2021 · 1 comment
Open

ClassNotFoundException: ddf.minim.Minim #117

Creativeguru97 opened this issue Jul 7, 2021 · 1 comment

Comments

@Creativeguru97
Copy link

Creativeguru97 commented Jul 7, 2021

I came across this error for few hours.
I've been using minim to play a soundfile in my sketch on Windows 10.
Until yesterday it just worked fine, but today I came across the error.

java.lang.NoClassDefFoundError: ddf/minim/Recordable
or sometime
ClassNotFoundException: ddf.minim.Minim
So I can't run the sketch.

Does Anybody has ever come across this issue here?

My code:

import ddf.minim.effects.*;
import ddf.minim.signals.*;
import ddf.minim.spi.*;
import ddf.minim.ugens.*;

Minim minim;
AudioSample audio;

void setup() {
minim = new Minim(this);
audio = minim.loadSample("greeting.wav", 2048);
}
void draw() {
}
void mousePressed() {
audio.trigger();
ellipse(mouseX, mouseY, 50, 50);
}

@Creativeguru97
Copy link
Author

I just realized that I installed Processing itself on OneDrive.,. I assume that might be problematic. I'm gonna try to change the location and see what will happen.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant