Tagged Questions
5
votes
3answers
813 views
Looking for evolutionary music example code
I would like to implement an interactive evolutionary algorithm for generating music (probably just simple melodies to start with).
I'd like to use JFugue for this. Its website claims that it is ...
2
votes
1answer
385 views
Netbeans project in Eclipse
I am Java beginner. I have developed only two Java desktop applications and I use Eclipse as IDE. Right now I wanted to work on this project https://nbjfuguesupport.dev.java.net/
All code is in ...
1
vote
5answers
684 views
Java File and ByteArray or InputStream - please quick help
I want to use jFuge to play some MIDI music in an applet. There's a class for the MIDI pattern - Pattern - and the only method to load the pattern is from a File. Now, I don't know how applets load ...
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
299 views
KeyListener and timing
I am writing program in Java will have to do with music input. I want to use my computer keyboard as instrument.Pretty much it will be as button accordion which I play. I will do the mapping between ...
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 ...