Tagged Questions
The jfugue tag has no wiki summary.
8
votes
5answers
515 views
.NET API for music programming?
In short words I am looking for a .NET translation of JFugue.
Update
I realize that there is no real .NET alternative for JFugue, the posts bellow are always great as a guideline for one who wants to ...
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
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 ...
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
683 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
132 views
type javax.sound.midi.Sequence cannot be resolved
I am trying to use the open-source music programming API JFugue in my android 3.0 application, and am getting this error tag on the line player.play(pattern);:
The type javax.sound.midi.Sequence ...
0
votes
1answer
111 views
jFugue incorrectly parsing tempo
I'm using jFugue to parse a midi file and it will always parse the tempo incorrectly(I know that the tempo is 140 and it is saying that the tempo is 720). At first I thought that it might, somehow, be ...
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 ...