I'm working with JFugue , when i tried to execute the code
Player myPlayer = new Player();
myPlayer.play( ":DEFAULT(duration=.25)");
Pattern test=new Pattern(" m327.0 m348.8 ( m392.4/0.25 m413.393 m392.4 )/0.5 m348.8 ");
myPlayer.play(test);
I'm getting a Parser exception,The character, parsed as a note velocity, is not recognized: : 0
when i remove the 0 from ')/0.5' , it works properly
Pattern test=new Pattern(" m327.0 m348.8 ( m392.4/0.25 m413.393 m392.4 )/.5 m348.8 ");
The same exception is showing for all values greater than or equal to 1(for eg: ')/1.5' ) But, I noticed that m392.4/0.25 is working without any problem.