当前位置: 代码迷 >> Android >> Android MediaRecorder-IllegalStateException
  详细解决方案

Android MediaRecorder-IllegalStateException

热度:139   发布时间:2023-08-04 11:43:18.0

代码中引发异常的部分:

        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()和stop()上。 为什么会这样?

如果目标大于22,则必须实现运行时权限。 以了解如何在android中实现运行时权限。

  相关解决方案