Change output format of audio file of Audio Capture

1k Views Asked by At

I'm new to Android coding and trying to develop basic apps and I need help with the following question.

I'm trying to create an Audio Capture App using Media Recorder API's and I have a doubt regarding the output file format.

As per the code, the output file format is set to 3gp and uses an AMR audio encoder.

mRecorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP);
recorder.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB);

mFileName = Environment.getExternalStorageDirectory().getAbsolutePath();
    mFileName += "/audiorecordtest.3gp";

I want the output file format to be in mp3. Can anyone help with this?

There are only few format as per the documentation WEBM, THREE_GPP, MPEG_4.

Please elaborate your answer as I'm new here.

0

There are 0 best solutions below