作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有人知道我在哪里可以找到录制视频并将其保存在设备上的示例源代码吗?代码不应使用 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/
我正在尝试用 Qt 创建一个录像机。到目前为止,我所做的是在屏幕上截取一个矩形的屏幕截图并保存。最后,我使用 ffmpeg 从图像中获取视频文件。 我将计时器的信号 timeout() 连接到我的自定
我是一名优秀的程序员,十分优秀!