PDA

Click to See Complete Forum and Search --> : Help with sound...


Nove
May 23rd, 2005, 05:34 PM
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.

Jacob Roman
May 23rd, 2005, 05:37 PM
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.

Dillinger4
May 23rd, 2005, 06:48 PM
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).