Skip to content

Instantly share code, notes, and snippets.

@markojerkic
Last active May 20, 2017 15:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save markojerkic/b5e0a40f4403323c75455b9ed747999d to your computer and use it in GitHub Desktop.
Save markojerkic/b5e0a40f4403323c75455b9ed747999d to your computer and use it in GitHub Desktop.
MediaRecorder mediaRecorder = new MediaRecorder();
mediaRecorder.setAudioSource(MediaRecorder.AudioSource.MIC);
mediaRecorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP);
mediaRecorder.setOutputFile(mFileName);
mediaRecorder.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment