java.lang.RuntimeException:启动失败(前置摄像头录制)
Posted
技术标签:
【中文标题】java.lang.RuntimeException:启动失败(前置摄像头录制)【英文标题】:java.lang.RuntimeException: start failed(Front camera recording) 【发布时间】:2016-01-19 07:02:34 【问题描述】:我在尝试从前置摄像头录制视频时遇到异常情况。但是后置摄像头录制工作正常。崩溃在线mMediaRecorder.start();
java.lang.RuntimeException: start failed.
at android.media.MediaRecorder.start(MediaRecorder.java)
at xyz.CameraFragment$6.onClick(CameraFragment.java:270)
at android.view.View.performClick(View.java:4466)
at android.view.View$PerformClick.run(View.java:18537)
at android.os.Handler.handleCallback(Handler.java:733)
at android.os.Handler.dispatchMessage(Handler.java:95)
at android.os.Looper.loop(Looper.java:136)
at android.app.ActivityThread.main(ActivityThread.java:5102)
at java.lang.reflect.Method.invokeNative(Method.java)
at java.lang.reflect.Method.invoke(Method.java:515)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:785)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:601)
at dalvik.system.NativeStart.main(NativeStart.java)
下面是我的代码-
private boolean prepareVideoRecorder()
mMediaRecorder = new MediaRecorder();
mCamera.unlock();
mMediaRecorder.setCamera(mCamera);
mMediaRecorder.setAudiosource(MediaRecorder.AudioSource.CAMCORDER);
mMediaRecorder.setVideoSource(MediaRecorder.VideoSource.CAMERA);
mMediaRecorder.setProfile(CamcorderProfile.get(CamcorderProfile.QUALITY_HIGH));
mVideoFile = new File(getOutputMediaFile().toString());
mMediaRecorder.setOutputFile(mVideoFile.getAbsolutePath());
mMediaRecorder.setPreviewDisplay(mPreview.getHolder().getSurface());
mMediaRecorder.setOrientationHint(270);
mMediaRecorder.setMaxDuration(10000);
mMediaRecorder.setOnInfoListener(this);
try
mMediaRecorder.prepare();
catch (IllegalStateException e)
Log.d("CAMERA", "IllegalStateException preparing MediaRecorder: " + e.getMessage());
releaseMediaRecorder();
return false;
catch (IOException e)
Log.d("CAMERA", "IOException preparing MediaRecorder: " + e.getMessage());
releaseMediaRecorder();
return false;
return true;
if (prepareVideoRecorder())
// Camera is available and unlocked, MediaRecorder is prepared,
// now you can start recording
mMediaRecorder.start();
【问题讨论】:
Android cant record video with Front Facing Camera, MediaRecorder start failed: -19的可能重复 【参考方案1】:基于spitzanator的回答:
-
确保您的权限正确:
<uses-feature android:name="android.hardware.camera.front" />
-
显然这行代码不适用于前置摄像头:
mMediaRecorder.setProfile(CamcorderProfile.get(CamcorderProfile.QUALITY_HIGH));
spitzanator 还说:CamcorderProfile.get() 的签名默认为后置摄像头的配置文件:
以给定的质量级别返回设备上第一个后置摄像头的摄像机配置文件。如果设备没有后置摄像头,则返回 null。
可以在here找到理想的解决方案。
旁注:由于声誉低下,我无法发表评论而不是发布答案,所以所有的功劳都归于spitzanator。
【讨论】:
那么对于前置摄像头,我应该用-mMediaRecorder.setProfile(CamcorderProfile.get(CamcorderProfile.QUALITY_HIGH));
.. 第一个参数应该是打开的摄像头的ID?摄像头的ID是什么,我该如何找到是吗?
嗨@Stranger,我相信这个答案值得一试:here。正在尝试检索相机的 ID。此外,我还建议您查看 Android 文档以了解有关相机的详细信息here
@Stranger,这个link 似乎也很有用。
recorder.setProfile(CamcorderProfile.get(cameraId, CamcorderProfile.QUALITY_HIGH));
有效...指定相机 ID 有效。以上是关于java.lang.RuntimeException:启动失败(前置摄像头录制)的主要内容,如果未能解决你的问题,请参考以下文章