我正在使用 MediaRecoder 录制声音,但录制完成后无法播放。我尝试使用 Google Play Music、ES 媒体播放器,甚至将其上传到电脑并尝试使用 Winamp 打开它。没什么玩的!
//AUDIO RECORDER
recorder = new MediaRecorder();
recorder.reset();
recorder.setAudioSource(MediaRecorder.AudioSource.MIC);
recorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP);
recorder.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB);
if (Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED))
{
externalStoragePath = Environment.getExternalStorageDirectory().getAbsolutePath();
externalOutputPath = externalStoragePath + File.separator + "/Android/data/com.whizzappseasyvoicenotepad/test.mp3";
recorder.setOutputFile(externalOutputPath);
}
else
{
storagePath = Environment.getDataDirectory().getAbsolutePath();
recorder.setOutputFile(storagePath + "/Android/data/com.whizzappseasyvoicenotepad/test.mp3");
}
甚至尝试通过单击按钮在应用程序中打开它:
public void testPlay (View v) throws IllegalArgumentException, SecurityException, IllegalStateException, IOException{
mediaPlayer = new MediaPlayer();
mediaPlayer.setDataSource(externalOutputPath);
mediaPlayer.prepare();
mediaPlayer.start();
}
但这会使应用程序崩溃。但这不是主要问题,主要问题是我无法播放文件。编码有什么问题吗?
我还尝试将其从 .mp3 更改为 .3gp,但没有成功。然后我还尝试删除 .mp3 和 .3gp,只留下“测试”作为名称,然后它甚至没有将其识别为音频文件。
哦,如果有人在应用程序崩溃时想要 logcat:
07-31 16:51:43.953: E/AndroidRuntime(26918): java.lang.IllegalStateException: Could not execute method of the activity
07-31 16:51:43.953: E/AndroidRuntime(26918): Caused by: java.lang.reflect.InvocationTargetException
07-31 16:51:43.953: E/AndroidRuntime(26918): Caused by: java.io.IOException: setDataSourceFD failed.: status=0x80000000
但同样,应用程序崩溃目前不是问题。首先我想解决音频文件无法播放的问题。但是,如果您知道它为什么会崩溃,我也将不胜感激!