Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to access the second mic android such as Galaxy 3

A lot of smart phone now have more than one microphone. One for voice input and another for reducing the enviroment noise.

I am wondering how could I access the two microphone's signal independently? Or turn off one of the microphone?

Any thoughts or comments are welcomed. Thanks a lot.

like image 583
Foreverniu Avatar asked Mar 14 '13 19:03

Foreverniu


1 Answers

I'm not familiar with the Galaxy S3 specifically, but the following is true for the majority of devices I've worked with:

  • There's no reliable way of selecting whether to use the primary or secondary mic for a mono recording. The MIC AudioSource usually means the primary mic when doing a mono recording, and the CAMCORDER source might mean the secondary mic. But there's no guarantee for this, because it depends e.g. on the physical placement of the mics.

  • Recording in mono effectively turns the other mic off, and whatever noise reduction is done uses only the signal from one mic (so there's little to no reduction of dynamic noise).
    One exception to this might be if you record during a voice call where both mics already have been enabled in order to do uplink noise suppression.
    Another exception might be if you use the VOICE_RECOGNITION AudioSource, because some vendors apply noise suppression on the signal using one or more extra mics in this use-case.

  • Recording in stereo records from both mics on a 2-mic device. The left channel contains the input from one mic and the right channel contains the input from the other mic, but there's no guarantee as to which physical mic the channels correspond to (again, depends on the placement).

like image 199
Michael Avatar answered Sep 17 '22 13:09

Michael