I am using following code to record the sound in my Galaxy S2.
Intent intent = new Intent(MediaStore.Audio.Media.RECORD_SOUND_ACTION);
But this code is storing it in .3ga file.
In my app, I need to find the maximum amplitude of the sound. But Java sound does not support the .3ga file. Can someone please tell me how can I tackle this problem?
Thanks in advance!