I do not understand what you want. if you are talking about a recording input source, various Android OS for Android, DOWNLINK / Headphone speaker CAMCORDER, etc. are available for you.
Source Sode Android Developer Website
private void startRecording() { mRecorder = new MediaRecorder(); mRecorder.setAudioSource(MediaRecorder.AudioSource.VOICE_DOWNLINK); mRecorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP); mRecorder.setOutputFile(mFileName); mRecorder.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB); try { mRecorder.prepare(); } catch (IOException e) { Log.e(LOG_TAG, "prepare() failed"); } mRecorder.start(); }
Attaullah
source share