Back in my high school Pascal class, I had a fun little program that would take in an integer and then play a tone using the system speaker. The pitch of the tone would vary, based on the int.

Does functionality like this exist in the Java world? Would an alternative be to pull in a wav or ulaw, and then change the frequency?

Thanks,
IVR Avenger

link|improve this question

66% accept rate
Duplicated: stackoverflow.com/questions/269657/… – Vash Oct 8 '10 at 17:23
1  
I don't think so; those questions don't indicate how to alter the pitch/frequency with different inputs. That question just shows how to do java.awt.Toolkit.getDefaultToolkit().beep(), of which I'm already aware. :-) – IVR Avenger Oct 8 '10 at 17:30
feedback

2 Answers

up vote 1 down vote accepted

You might enjoy this simple example that constructs and plays pure tones.

link|improve this answer
feedback

You could use JFugue

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.