Top "Audiorecord" questions

AudioRecord class in standard Android API for recording raw Audio.

Android AudioRecord example

I am designing an Android app and I need to implement an AudioRecord class to record the user's sound. After …

android audio audiorecord android-audiorecord
Android AudioRecord class - process live mic audio quickly, set up callback function

I want to record audio from the mic and access it for possible playback in near real-time. I am unsure …

java android audiorecord android-hardware
Need a simple example for audio recording

I am in need of simple audio recording and playing example using AudioRecorder in android. I tried with MediaRecorder, it …

android audio alsa audiorecord mediarecorder
Android: Need to record mic input

Is there a way to record mic input in android while it is being process for playback/preview in real …

android audio audio-recording audiorecord
Recording .Wav with Android AudioRecorder

I have read a lot of pages about Android's AudioRecorder. You can see a list of them below the question. …

android audiorecord
Android audio FFT to retrieve specific frequency magnitude using audiorecord

I am currently trying to implement some code using Android to detect when a number of specific audio frequency ranges …

java android fft frequency audiorecord
Writing PCM recorded data into a .wav file (java android)

I'm using AudioRecord to record 16 bit PCM data in android. After recording the data and saving it to a file, …

java android wav pcm audiorecord
Creating a WAV file from raw PCM data using the Android SDK

I'm trying to use the AudioRecord class to record a WAV file. The problem is that it only supplies the …

android audio wav pcm audiorecord
PCM -> AAC (Encoder) -> PCM(Decoder) in real-time with correct optimization

I'm trying to implement AudioRecord (MIC) -> PCM -> AAC Encoder AAC -> PCM Decode -> …

android pcm aac android-mediacodec audiorecord
Encoding AAC Audio using AudioRecord and MediaCodec on Android

I am trying to encode aac audio using android AudioRecord and MediaCodec. I have created a encoder class very similar …

android aac audiorecord android-mediacodec