mFilename = Environment.getExternalStorageDirectory().getAbsolutePath();
mFilename += "/audiorecorder.3gp";
mRecorder = new MediaRecorder();
mRecorder.setAudioSource(MediaRecorder.AudioSource.MIC);
mRecorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP);
mRecorder.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB);
mRecorder.setOutputFile(mFilename);
mRecorder.setOnErrorListener(errorListenerForRecorder);
Above is my settings for MediaRecord. I can record sound from microphone into .3pg audio file perfectly. I simulated it on Android AVD and I can only find the output file in SD card. But I hope I can also output my audio file on my computer. It is also strange that I can not find the output file in my computer when I was running AVD. So where the audio file is stored when I was running AVD? Could anyone tell me how to set the output path? THX!