我正在编写一个应用程序,它使用 MediaRecorder 以 AMR 格式从麦克风录制语音,然后使用 MediaPlayer 播放数据。
无论如何,这就是目标。
我相当有信心我的 MediaRecorder 端正在工作,我正在以正确的数据速率在正确的位置生成数据文件。这是我如何启动和停止我的 MediaRecorder
public void OnStartRecord(View v )
{
System.out.println( "StartRecord");
try {
audioFile = File.createTempFile("amrtmp", ".amr", getApplicationContext().getFilesDir());
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
System.out.println( "Recording to " + audioFile.getAbsolutePath());
mRecorder = new MediaRecorder();
mRecorder.setAudioSource(MediaRecorder.AudioSource.VOICE_COMMUNICATION);
mRecorder.setOutputFormat(MediaRecorder.OutputFormat.AMR_NB);
mRecorder.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB);
mRecorder.setAudioEncodingBitRate(4750);
mRecorder.setAudioSamplingRate(8000);
mRecorder.setOutputFile(audioFile.getAbsolutePath());
try {
mRecorder.prepare();
} catch (IllegalStateException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
mRecorder.start();
}
public void OnStopRecord(View v )
{
System.out.println( "StopRecord");
mRecorder.stop();
mRecorder.release();
}
这就像一个魅力。典型的输出类似于
StartRecord
Recording to /data/data/com.test.playback/files/amrtmp-235967797.amr
当我开始录制,然后停止录制时,我可以看到文件已创建,并且其中包含与设置正确对应的一定数量的数据。
旁注:运行时我检测到扬声器有奇怪的嗡嗡声。知道那是什么吗?
当我尝试播放文件时,我遇到了无穷无尽的麻烦。我尝试了以下方法:
public void OnPlay(View v )
{
MediaPlayer mPlayer = new MediaPlayer();
mPlayer.setAudioStreamType(AudioManager.STREAM_VOICE_CALL);
FileInputStream FIS = null;
try {
FIS = new FileInputStream(audioFile.getAbsolutePath());
mPlayer.setDataSource(FIS.getFD());
mPlayer.prepare();
}
catch( Exception e )
{
e.printStackTrace();
}
mPlayer.start();
}
这导致 MediaPlayer 的以下输出根本没有播放任何内容:
start() mURI 为空
我也尝试过相同的代码,但不同地设置 mPlayer 的数据源:
mPlayer.setDataSource(audioFile.getAbsolutePath());
当使用 java.io.IOException 状态 0x1 调用 prepare 时,这将失败。
我不得不想象我还需要对 MediaPlayer 进行其他操作才能正确设置它。有什么建议么?