Hi everyone,
I am reading a book called "Head First Java" by Kathy Sierra and Bert Bates. One example piece of code uses a MIDI sequencer to generate a sound.
Unfortunately it doesn't work for me, even if I tried it both on Ubuntu and Windows. When I run it I only hear either a short piano note or a kind of knock.
Changing the arguments should give a different instrument and note, but it always plays the same sound when I execute it.
I don't know anything about sound and MIDI devices, so I don't know how to fix the problem.
I give the code below.
After compiling it I execute the command with different arguments:
java MiniMusicCmdLine 102 30
java MiniMusicCmdLine 80 20
java MiniMusicCmdLine 40 70
They're supposed to produce notes of different pitch, but I always hear the same short knock or sometime a piano note (but always of the same pitch).
I welcome any help at the beginner level.
----------------------