I'd like to record sound using a microphone, be able to reverse that sound and transpose it onto any other sound, and I'd like to do it in an applet. Can someone provide me a starting point for this? Thanks.
Printable View
I'd like to record sound using a microphone, be able to reverse that sound and transpose it onto any other sound, and I'd like to do it in an applet. Can someone provide me a starting point for this? Thanks.
That reminds me of that one thread Playing Mp3's Backwards (Or Wav's at least) over in the Classic VB section. I don't think Java is capable of accessing COM objects such as DirectX, so API's are your last resort. I could be wrong on the DX thing though.
Check out the AudioClip interface which provides some methods for playing, stoping and looping WAV and MIDI files. Probably other formats also but i forget. Also look into the Applet class which has a method to grab an AudioClip based on a URL. AudioClip getAudioClip(URL url), AudioClip getAudioClip(URL url,String fileName).