Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Now I am working on a Android application to record voice. I did this by using the following code.

m_recorder.setAudioSource(MediaRecorder.AudioSource.MIC);
    m_recorder.setOutputFormat(OutputFormat.THREE_GPP);

    m_recorder.setAudioEncoder(AudioEncoder.AMR_NB);
 // m_recorder.setAudioEncoder(MediaRecorder.getAudioSourceMax());
    m_recorder.setAudioEncodingBitRate(128);
    m_recorder.setAudioSamplingRate(44100);

    m_recorder.setOutputFile(Environment.getExternalStorageDirectory() + "/audio.3gp");
        try {
            m_recorder.prepare();
            m_recorder.start();
        } 

But the problem is I am getting Low volume sounds.I had searched online for solution.All I got was

"There is no way to do this while recording - but while playing, you can use the setVolume(float, float) method on MediaPlayer."

But I have to upload the recorded clip on the server.So is there any way to convert the low volume sound clip to high volume clip?

share|improve this question

1 Answer

I used this code for recording and saving the file and it worked for me:

                    recorder = new MediaRecorder();
                    FileOutputStream fos = openFileOutput(fileNameStr,
                            MODE_PRIVATE);

                    recorder.setAudioSource(MediaRecorder.AudioSource.MIC);
                    recorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP);
                    recorder.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB);
                    recorder.setOutputFile(fos.getFD());
                    recorder.prepare();
                    recorder.start();
share|improve this answer
what is the difference in our code? – sarath Mar 30 '12 at 12:57
what does these lines do m_recorder.setAudioEncodingBitRate(128); m_recorder.setAudioSamplingRate(44100); – Goofy Mar 30 '12 at 13:26
i used that line for improving sound quality......i tried ur code....what is that filenamestr variable?... – sarath Mar 30 '12 at 13:28
Is my code working for u... Filenamestr is a string variable which holds filename – Goofy Mar 30 '12 at 18:47
then...where the file is saves.. – sarath Mar 31 '12 at 4:33
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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