Android MediaRecorder - IllegalStateException

时间:2017-02-15 14:58:33

标签: android mediarecorder

抛出异常的代码部分:

        recorder.setAudioSource(MediaRecorder.AudioSource.VOICE_CALL);
        recorder.setOutputFormat(MediaRecorder.OutputFormat.DEFAULT);
        recorder.setAudioEncoder(MediaRecorder.AudioEncoder.DEFAULT);

        recorder.setOutputFile("test.3gp");
        recorder.prepare();
        recorder.start();

我得到了这个例外:

E/MediaRecorder: start failed: -38
W/System.err: java.lang.IllegalStateException
W/System.err:     at android.media.MediaRecorder.start(Native Method)
W/System.err:     at com.example.amit.recording.RecordService.startRecording(RecordService.java:280)
W/System.err:     at com.example.amit.recording.RecordService.onStartCommand(RecordService.java:141)
W/System.err:     at android.app.ActivityThread.handleServiceArgs(ActivityThread.java:3422)
W/System.err:     at android.app.ActivityThread.access$2200(ActivityThread.java:181)
W/System.err:     at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1572)
W/System.err:     at android.os.Handler.dispatchMessage(Handler.java:102)
W/System.err:     at android.os.Looper.loop(Looper.java:145)
W/System.err:     at android.app.ActivityThread.main(ActivityThread.java:6117)
W/System.err:     at java.lang.reflect.Method.invoke(Native Method)
W/System.err:     at java.lang.reflect.Method.invoke(Method.java:372)
W/System.err:     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1399)
W/System.err:     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1194)

“recorder.start()”导致了此问题。当我停止记录时,得到这个:“停止调用无效状态:0” 顺便说一句 - 获得清单中我需要的所有权限。谢谢!

修改

我添加了“Thread.sleep(2000);”在“prepare()”之前& “start()”,现在它将3gp文件保存在正确的路径中,但例外情况仍然存在 - 在start()&在停止()。它为什么会发生?!

1 个答案:

答案 0 :(得分:0)

如果您的定位大于22,那么您必须实现运行时权限。 See here了解如何在android中实现运行时权限。