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

I am developing an iOS application that receives data through the auxiliary port (microphone).

We got oscilloscopes hooked up and are at the point where we can measure frequencies and amplitudes on a testing iPhone.

However, even with the auxiliary cable connected, the iPhone still listens to the internal microphone in addition to our external AUX input thus watering down our measurements.

The iPhone definitely recognizes the connected AUX cable (internal speakers are turned off).

Is there any way to programmatically disable the built-in microphone?

or

Is there some special signal we can send through the AUX port to disable the internal microphone?

share|improve this question

2 Answers

up vote 1 down vote accepted

After much research on this topic, there is no way to do it at this moment in time.

share|improve this answer

If you look at the Audio Session Programming Guide and the AVCaptureDevice Class Reference, all the properties relating to the devices input sources and audio routes are readonly.

If it's of any use, you can detect whether or not headphones or an external mic are plugged in. Here's a question relating to that.

I don't believe you can disable the built-in microphone without the user physically pressing the silent switch, but maybe you could store the data recorded by the built-in mic and then filter it out of the measurements taken by the oscilloscopes? I don't know how you would go about implementing this; it's just a theory.

Hope this helps!

share|improve this answer

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.