I would like to record .wav files using android. is there any way to do this?
I have recently made library for this recording purpose. you just have to do this :-
recorder = OmRecorder.wav(
new PullTransport.Default(mic(), new PullTransport.OnAudioChunkPulledListener() {
@Override public void onAudioChunkPulled(AudioChunk audioChunk) {
animateVoice((float) (audioChunk.maxAmplitude() / 200.0));
}
}), file());
You can set frequency audio source, etc. and then can record wav file easily. you can find more info on this :-
https://github.com/kailash09dabhi/OmRecorder