RxAndroidAudio
RxAndroidAudio copied to clipboard
How to record in ogg?
Can i record in ogg i tried and it says error code 2
mAudioFile = new File( prdir.getAbsolutePath() + File.separator + System.nanoTime() + ".webm"); return mAudioRecorder.prepareRecord(MediaRecorder.AudioSource.MIC, MediaRecorder.OutputFormat.WEBM, MediaRecorder.AudioEncoder.VORBIS, 192000, 192000, mAudioFile);
Sorry for the late response, I think its the encoder format, you can try with the Android MediaRecorder
API to record ogg file, then use parameters here.
How to record in wav