I am attempting to add sounds to a sketch using the SoundCipher libraries. When I create the simple samples using the Processing UI, it works fine.
However, as I do all my coding in Eclipse, I imported the libraries and re-created the simple sketch. When it runs (and it does run), the notes are just buzzing sounds, not the default piano sound.
Any suggestions?
Eclipse 3.7 Java JDK 1.6
import arb.soundcipher.*;
public class SoundSamples extends PApplet {
SoundCipher sc = new SoundCipher(this);
public void setup() {
size(35, 120);
background(255);
}