我是android新手我想将.raw文件转换为.mp3请帮我转换它。 我的代码是。
Singleton() { } // Private constructor
答案 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的示例