Android 相机视频录制

发布于 2024-11-25 21:23:59 字数 287 浏览 0 评论 0原文

我在以下链接上有一些代码来录制视频 如何在 Android 上捕获视频录制?

它工作正常,但我想开始预览我的视频开始录制前先打开相机。 我尝试添加

recorder.setCamera(Camera.open());

但它不起作用。请建议我在录制之前应该添加什么来开始预览。

问候

I have some code on the following link to record the video
How can I capture a video recording on Android?

it works fine but I want to start preview my camera before start the recording.
I have try to add the

recorder.setCamera(Camera.open());

but it doesn't work. Please suggest me what should I add for start preview before recording.

regards

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

晚雾 2024-12-02 21:23:59

您可以使用 Camera 对象启动预览,然后在使用 MediaRecorder 之前停止预览(查看此处以了解如何使用相机:相机教程)

您还拥有 Android 相机应用程序,以便了解如何组合相机 API 和 MediaRecorder API。对于这个东西来说,这是一个很好的参考:
相机应用

只需安装 git 并下载代码。
您想查看:

  1. VideoCamera

  2. CameraHandler (或类似的东西)

祝你好运。

You can use the Camera object to start the preview and then stop it before using the MediaRecorder (take a look here to see how to use the camera: Camera Tutorial)

You also have the android camera app in order to see how to combine the Camera API and the MediaRecorder API. It is a great reference for this stuff:
Camera App

Justo install git and download the code.
You want to look on:

  1. VideoCamera

  2. CameraHandler (or something like this)

Good luck.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文