Android如何将.raw数据转换为.mp3文件?

时间:2016-01-13 07:35:19

标签: java android android-activity converter audio-recording

我是android新手我想将.raw文件转换为.mp3请帮我转换它。 我的代码是。

Singleton() { }  // Private constructor

1 个答案:

答案 0 :(得分:0)

您可以使用MediaRecorder并使用编码器和输出格式正确设置媒体录制器,这样可以将文件保存为mp3格式:

mRecorder.setOutputFormat(MediaRecorder.OutputFormat.MPEG_4);
mRecorder.setOutputFile(getFile("mp3"));
mRecorder.setAudioEncoder(MediaRecorder.AudioEncoder.AAC);
mRecorder.prepare();
mRecorder.start();

如果您必须使用AudioRecorder,请查看this如何将其转换为mp3的示例