However my app couldn't record in Samsung Galaxy S 2 from mic, it has been recording in other phones from mic.

Recorder.setAudioSource(MediaRecorder.AudioSource.MIC);
Recorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP);
Recorder.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB);

In my code, I select the source type from 0 to 4, select the encoder type as amr-nb, amr-wb, aac or default, select the output format type as .3gp, .mp4 or .amr and also select audio channel as 1 or 2. I try all of combinations which are up. At least one of the combinations work in many phones. But none of them could work in Samsung Galaxy S 2. It records the file and the duration of the record is true but the voice is only silence!

In my research in web with this problem, i find that it could be derived from the microphone type. Although in my code I select the audio source type as default, mic, voice downlink, voice uplink, voice call, it couldn't work. Then I set the audio source type as hard by that 0, 1, 2, 3, 4 instead of MediaRecorder.AudioSource.MIC etc. But it also couldn't work...

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

I've had issues on the S2 where an app will lock up the microphone and won't release it, especially if you are doing quick development cycles where you lock and release the mic just as you uninstall the app (and re-install a new version). Sometimes it unlocks after some time has passed, but the sure way to make sure the mic is available is to restart the phone after a failed attempt.

I've been able to record audio using the following settings in the AudioRecord object:

int buffer_size = 2 * AudioRecord.getMinBufferSize(16000, AudioFormat.CHANNEL_IN_MONO, AudioFormat.ENCODING_PCM_16BIT);
recorder = new AudioRecord(
  MediaRecorder.AudioSource.MIC,               //audio source
  16000,                                       //16kHz sample rate
  AudioFormat.CHANNEL_IN_MONO,                 //channel
  AudioFormat.ENCODING_PCM_16BIT,              //encoding
  buffer_size );                               //buffer size
link|improve this answer
1  
Thank you Aaron. My app starts to record when a phone conversation begins and stops when the conversation is over. The duration of the record is true but there is only silence. So that I'm not convinced that the mic is open(or free). How can I test the mic is free while my app is running? – parloid Oct 20 '11 at 7:16
1  
You can test if the mic is available by calling the getState() function. If it is equal to STATE_UNINITIALIZED then you were unable to grab the mic. – Aaron C Oct 20 '11 at 14:18
2  
If you are trying to record the conversation audio, you might want to look into using MediaRecorder.AudioSource.VOICE_DOWNLINK or MediaRecorder.AudioSource.VOICE_UPLINK as the mic source. – Aaron C Oct 20 '11 at 14:19
I succeed recording conversation voice in S2 by setting audiosource Recorder.AudioSource(2); – parloid Oct 21 '11 at 13:13
2  
When audio source is set to two(2), my api which is running on Galaxy S2 records both uplink and downlink voice. But I can't understand why it is 2? 2 equals to MediaRecorder.AudioSource.VOICE_UPLINK – parloid Oct 21 '11 at 13:19
feedback

Your Answer

 
or
required, but never shown

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