码迷,mamicode.com
首页 > 移动开发 > 详细

我的Android进阶之旅------>Android中MediaRecorder.stop()报错 java.lang.RuntimeException: stop failed.

时间:2015-08-28 13:23:49      阅读:1575      评论:0      收藏:0      [点我收藏+]

标签:

今天在调用MediaRecorder.stop(),报错了,java.lang.RuntimeException: stop failed.

E/AndroidRuntime(7698): Cause by: java.lang.RuntimeException: stop failed.
E/AndroidRuntime(7698):            at android.media.MediaRecorder.stop(Native Method)
E/AndroidRuntime(7698):            at com.tintele.sos.VideoRecordService.stopRecord(VideoRecordService.java:298)


技术分享

报错代码如下:

	if (mediarecorder != null) {
			mediarecorder.stop();
			mediarecorder.release();
			mediarecorder = null;
			if (mCamera != null) {
				mCamera.release();
				mCamera = null;
			}
		}


stop()方法源代码如下:

/**
     * Stops recording. Call this after start(). Once recording is stopped,
     * you will have to configure it again as if it has just been constructed.
     * Note that a RuntimeException is intentionally thrown to the
     * application, if no valid audio/video data has been received when stop()
     * is called. This happens if stop() is called immediately after
     * start(). The failure lets the application take action accordingly to
     * clean up the output file (delete the output file, for instance), since
     * the output file is not properly constructed when this happens.
     *
     * @throws IllegalStateException if it is called before start()
     */
    public native void stop() throws IllegalStateException;

源代码中说了:Note that a RuntimeException is intentionally thrown to the application, if no valid audio/video data has been received when stop() is called. This happens if stop() is called immediately after start().


现在,在mediarecorder.stop();这一句报错了,现在在mediarecorder.stop();这句之前加几句就不会报错了

mediarecorder.setOnErrorListener(null);
mediarecorder.setOnInfoListener(null);  
mediarecorder.setPreviewDisplay(null);

改后代码如下:

if (mediarecorder != null) {
			//added by ouyang start
			try {
				//下面三个参数必须加,不加的话会奔溃,在mediarecorder.stop();
				//报错为:RuntimeException:stop failed
				mediarecorder.setOnErrorListener(null);
				mediarecorder.setOnInfoListener(null);  
				mediarecorder.setPreviewDisplay(null);
				mediarecorder.stop();
			} catch (IllegalStateException e) {
				// TODO: handle exception
				Log.i("Exception", Log.getStackTraceString(e));
			}catch (RuntimeException e) {
				// TODO: handle exception
				Log.i("Exception", Log.getStackTraceString(e));
			}catch (Exception e) {
				// TODO: handle exception
				Log.i("Exception", Log.getStackTraceString(e));
			}
			//added by ouyang end
			
			mediarecorder.release();
			mediarecorder = null;
			if (mCamera != null) {
				mCamera.release();
				mCamera = null;
			}
		}



    ====================================================================================

  作者:欧阳鹏  欢迎转载,与人分享是进步的源泉!

  转载请保留原文地址http://blog.csdn.net/ouyang_peng

====================================================================================

技术分享



版权声明:本文为欧阳鹏原创文章,欢迎转载,转载请注明出处http://blog.csdn.net/ouyang_peng

我的Android进阶之旅------>Android中MediaRecorder.stop()报错 java.lang.RuntimeException: stop failed.

标签:

原文地址:http://blog.csdn.net/ouyang_peng/article/details/48048975

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!