Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android. How to Do Audio Recording with High Volume?

I will describe briefly my trouble with audio recording.

So, I am doing audio recording using MediaRecorder, but unfortunately when I playback the recorded audio, I have media with a very low volume. I hardly hear anything.

Is there any possibility to setup recording volume?

Thanks.

like image 355
Lyubomyr Dutko Avatar asked Sep 07 '09 14:09

Lyubomyr Dutko


People also ask

How can I record high-quality audio on my phone?

Over on Android, Titanium Recorder (Android only, free with ads) provides one of the most complete solutions for sound capture. Tap the menu button (three dots) on the top right and go to Settings. Here, you can adjust the sample rate, bit rate, and gain to capture as much detail as possible for your recorded audio.


1 Answers

I experienced this issue on the Nexus One while using Froyo when the AudioManager was set to MODE_IN_CALL. Try setting it to MODE_NORMAL. This fixed the problem for me.

AudioManager audioManager = (AudioManager)activity.getSystemService(Context.AUDIO_SERVICE);
audioManager.setMode(AudioManager.MODE_NORMAL);
like image 170
Aaron C Avatar answered Oct 04 '22 22:10

Aaron C