Tagged Questions
2
votes
1answer
50 views
Is there any library in javascript that is similar to JFugue in Java?
With JFugue, synthesizing music is as simple as this:
Player player = new Player();
player.play("C D E F G A B");
While I do realize that the HTML5 Audio API is still under development for most of ...
1
vote
5answers
931 views
How to change pitch continuously in Java sound?
I'm working with midi using the Java sound API. Basically I'm trying to achieve a portamento effect where I can slide between different notes. The closest I've gotten is using the setPitchBend() ...
0
votes
1answer
243 views
Reimplementing the “ToneMatrix” audio toy
There is a really cool audio "toy" called ToneMatrix. I would like to reimplement it as a Java applet. I've tried using JFugue's player.play with individual notes for sound and Thread.sleep for ...