2

我正在我的广播中录制一个音频文件,但我没有收到任何错误,但我的 recorder.stop() 从未被称为继承我的代码:

String file_name= "recording";
        audiofile = File.createTempFile(file_name, ".3gp", sampleDir);
        String path=Environment.getExternalStorageDirectory().getAbsolutePath();
        //recorder = null;

         int audioSource = MediaRecorder.AudioSource.VOICE_CALL;

         recorder.setAudioSource(audioSource);
         recorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP); 
         recorder.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB); 
         recorder.setOutputFile(audiofile.getAbsolutePath()); 


             recorder.prepare();

             recorder.start(); 

我的停止功能包含:

public void stopRecord()throws IOException{
             if(recorder!=null)
             {

             recorder.stop();

             recorder.release();
             recorder.reset();

             Log.d(TAG, "recording stopped");
             }
             else
             {
                 Log.d(TAG, "recording stopped error");
             }

我在摘机阶段调用启动记录器并在空闲时停止记录器,但它进入空闲状态并且根本不调用停止。

case TelephonyManager.CALL_STATE_IDLE:  
                     prev_state=state;
                     Log.d(TAG, "CALL_STATE_IDLE==>"+incoming_nr);

                     Log.d(TAG, "recording stopped");  // Executes till here and skips the below part
                     try {
                        stopRecord();
                         Log.d(TAG, "recording stopped");  
                    } catch (IOException e) {
                        // TODO Auto-generated catch block
                        e.printStackTrace();
                    }
                     Log.d(TAG, "recording stopped");  

我已授予所需的所有许可,请在此先感谢您

4

1 回答 1

0

TelephonyManager.EXTRA_STATE_IDLE在没有活动时调用,并且在之前调用TelephonyManager.EXTRA_STATE_OFFHOOK

在这里,您stopRecord()在 state 中调用函数,TelephonyManager.EXTRA_STATE_IDLE因此您正在访问mRecorder.stop();,但此时 Recorder 对象为 null 且未初始化。使用 mediaRecorder 录制时,请查看这篇文章以获得更多说明Null Exception。也看看评论。

就没有错误而言,您是在try/catch块中调用它。所以只会生成堆栈跟踪。

于 2013-01-19T06:35:13.443 回答