Audio Recording and Streaming in Android
I an developing an android app. I want to accomplish below feature. I will use my phone's built-in mic to record and at the same time i want the recorded audio to be played through either phone's speakers or headphones. Is it feasible? If yes, please help me in this. Saurabh Meshram Here is a simple Recording and Playback application. Uses Android AudioRecord and AudioTrack , Design : The recorded audio is written to a buffer and played back from the same buffer, This mechanism runs in a loop (using Android thread) controlled by buttons. Code private String TAG = "AUDIO_RECORD_PLAYBACK";