I am looking for specs for the Analog Digital Converter or to be more specific I look for the max. sampling rate from my phone. Is there a way to get the Information ? If not is there a way to get this information from a website (i tried google….) or a serious source? It is not so important for a special phone I would prefer any information on this topic to bring myself forward.
Thank you..
(From developer.android.com regarding the AudioRecord class)
public AudioRecord (int audioSource, int sampleRateInHz, int channelConfig, int audioFormat, int bufferSizeInBytes)
developer.android.com states “sampleRateInHz the sample rate expressed in Hertz. 44100Hz is currently the only rate that is guaranteed to work on all devices, but other rates such as 22050, 16000, and 11025 may work on some devices.”
It doesn’t look like there’s a way to poll the phone for the samplerate, but you can use 44100Hz and it will be guaranteed to work on any device.