is it possible to make custom note and rest duration using JFugue? I have been trying to achieve this by using the / symbol in MusicString for the note duration but with no success. The code used is:
Player player = new Player();
player.play("V0 I[Flute] A/3");
This makes the A note to be played for 6 seconds. In this case i can just divide by 2 and get the wanted result, but i am not sure if this is the correct approach.
The second problem is when using the symbol @milliseconds which indicates the time (in milliseconds) when the following tokens should be played. For some reason i can't make the next note to be played after the milliseconds i have declared. In the following example the B note is played at after 34sec instead of 2sec.
player.play("V0 I[Flute] A @2000 B");
Any help would be appreciated.