MediaRecorder方法开始在Android中记录多个音频

时间:2015-11-08 18:36:00

标签: android audio android-mediarecorder

我需要在同一个活动中录制几个音频,一切正常,但是当我第二次或第三次录制音频时,应用停止并停止工作。我没有发现错误,测试已经看到错误发生在录音机.start line()当我录制了几个音频失败的功能。这是我的代码:我可以做些什么来修复它?

public String grabar(View v,String namefile) {

String url;
recorder = new MediaRecorder();
recorder.setAudioSource(MediaRecorder.AudioSource.MIC);//configura el micro del móvil como fuente
recorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP);//formato audio salida
recorder.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB);//especifica el codel del audio
recorder.setAudioEncodingBitRate(16);
recorder.setAudioSamplingRate(44100);
recorder.setMaxDuration(20000);//graba máximo 20 segundos
File path = new File(Environment.getExternalStorageDirectory()//obtenemos el path de la sd y creamos un archivo de extensión 3gp
        .getPath());
Log.d("uri1",path.toString());
try {
    archivo = File.createTempFile(namefile, ".3gp", path);
} catch (IOException e) {
    Log.d("uri1x","error creando fichero");
}
Log.d("uri2",namefile);
Log.d("uri3",archivo.toString());
url=archivo.toString();
recorder.setOutputFile(archivo.getAbsolutePath());//donde se almacena
Log.d("uri4", archivo.getAbsolutePath().toString());
try {//prepara la grabación
    recorder.prepare();
} catch (IOException e) {
    Log.e("uri5", "Fallo en grabación");
}
Log.d("uri6", archivo.getAbsolutePath().toString());
recorder.start();//graba
Log.d("uri7", archivo.getAbsolutePath().toString());
Toast.makeText(this, "Grabando...", Toast.LENGTH_SHORT).show();

b1.setEnabled(false);
b2.setEnabled(true);*/
    isRecording = true;
    return url;
}

public void detener(View v) {
    if(isRecording) {
        isRecording=false;
        recorder.stop();
        recorder.reset();
        recorder = null;
        Toast.makeText(this, "Grabación terminada", Toast.LENGTH_SHORT).show();
    }
}

 @Override                                                                  
public void onDestroy() {
    super.onDestroy();
    recorder.release();
}

1 个答案:

答案 0 :(得分:1)

试试这个:

开始录制

private void startRecord() throws IOException {
    if(mMediaRecorder!=null){
        mMediaRecorder.release();
    }
    FILENAME = Environment.getExternalStorageDirectory() + "/" + timestamp + ".mp4";
    File fileOut = new File(FILENAME);
    mMediaRecorder = new MediaRecorder();
    mMediaRecorder.setAudioSource(MediaRecorder.AudioSource.MIC);
    mMediaRecorder.setOutputFormat(MediaRecorder.OutputFormat.MPEG_4);
    mMediaRecorder.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_WB);
    mMediaRecorder.setOutputFile(FILENAME);
    mMediaRecorder.prepare();
    mMediaRecorder.start();

}

停止录制

 private void stopRecord() {
    try{
        mMediaRecorder.stop();
        mMediaRecorder.reset();
        mMediaRecorder.release();
    }
    catch (RuntimeException stopException){
       ...
    }

}