Record Wav files in Android
Based off of http://www.edumobile.org/android/audio-recording-in-wav-format-in-android-programming/
- Download AAR file from the releases page or checkout from source.
- Follow latest instructions to add as a dependency in Android Studio
For Android >= 6.0, make sure to request app permissions at runtime.
WaveRecorder waveRecorder = new WaveRecorder("DestinationFolderName");
waveRecorder.startRecording();
waveRecorder.stopRecording("fileName"); // Defaults to current timestamp
PRs welcome.
If editing the Readme, please conform to the standard-readme specification.
MIT