我試圖在我的應用程序中錄製聲音,然後將其存儲在res文件夾中。我還做了更少如下:如何將記錄文件存儲在res文件夾中?
private MediaRecorder recorder;
static final String OUTPUT_FILE = "/MediaPlayer/res/raw/recordoutput.3gpp"; //MediaPlayer is the java class and raw is the folder that I would like to put my recorded voice in
private void beginRecording() throws Exception{
killMediaRecorder(); //I implemented this function to kill the existing recorder
File outFile = new File(OUTPUT_FILE);
if(outFile.exists())
{
outFile.delete();
}
recorder = new MediaRecorder();
recorder.setAudioSource(MediaRecorder.AudioSource.MIC);
recorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP);
recorder.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB);
recorder.setOutputFile(OUTPUT_FILE);
recorder.prepare();
recorder.start();
}
清單:
<uses-permission android:name="android.permission.RECORD_AUDIO" />
但之後,我跑模擬器沒有原始內創建的文件,能有人幫助?
非常感謝! –
歡迎您! –
大聲笑...這正是我想說的。我想你不明白哈哈。好吧。 –