gpt4 book ai didi

android - 不使用 Intent 的摄像机录像机源

转载 作者:行者123 更新时间:2023-11-30 03:41:10 27 4
gpt4 key购买 nike

有人知道我在哪里可以找到录制视频并将其保存在设备上的示例源代码吗?代码不应使用 intent

我尝试使用这段代码: https://stackoverflow.com/questions/15691152/android-recording-a-video-initializing-the-camera-2 我在 YouTube 教程中看到的,但我无法让它工作。

我不能使用 intent,因为我需要在摄像头录制时调整视频 View 的大小。

我想我不能使用 intent 来做到这一点,或者我错了吗?

最佳答案

使用 intent 的源代码可以在以下位置找到: http://developer.android.com/training/camera/videobasics.html

一个很好的视频讲解(但是代码不行): http://www.youtube.com/watch?v=ZScE1aXS1Rs

最后我读到了这个:

这是[链接] ( http://developer.android.com/guide/topics/media/camera.html )!

并使用它来创建相机应用程序,最好的方法是......

重要建议:暂停摄像头时使用:

if (isRecording) {
// stop recording and release camera
mMediaRecorder.stop(); // stop the recording
releaseMediaRecorder(); // release the MediaRecorder object
mCamera.lock(); // take camera access back from MediaRecorder

// inform the user that recording has stopped
//setCaptureButtonText("Capture");

isRecording = false;

}

PauseAndRelease(); //add this before finish to use in the camera


public void PauseAndRelease ()
{
releaseMediaRecorder(); // if you are using MediaRecorder, release it first
releaseCamera(); // release the camera immediately on pause event
Log.d(TAG,"camera on pause" + mCamera );
}

关于android - 不使用 Intent 的摄像机录像机源,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15728659/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com