Android 录制视频的选项

发布于 2024-12-11 05:56:16 字数 224 浏览 0 评论 0原文

我想使用某些选项来录制视频。比如最长持续时间、质量等。 是否可以在没有自定义实现的情况下做到这一点 - 只需调用意图?

Intent intent = new Intent(MediaStore.ACTION_VIDEO_CAPTURE);
//add custom options here?
startActivityForResult(intent, TAKE_VIDEO);

I want to record video with certain options. Like maximum duration, quality etc.
Is it possible to do that without custom implementation - just by calling intent?

Intent intent = new Intent(MediaStore.ACTION_VIDEO_CAPTURE);
//add custom options here?
startActivityForResult(intent, TAKE_VIDEO);

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

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

发布评论

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

评论(1

吻泪 2024-12-18 05:56:16

使用下面的代码:

    intent.putExtra(MediaStore.EXTRA_VIDEO_QUALITY, 0);
    intent.putExtra(MediaStore.EXTRA_DURATION_LIMIT, 200);

有关更多选项,请查看:

http://developer. android.com/reference/android/provider/MediaStore.html

Use below code :

    intent.putExtra(MediaStore.EXTRA_VIDEO_QUALITY, 0);
    intent.putExtra(MediaStore.EXTRA_DURATION_LIMIT, 200);

For more options have a look at this :

http://developer.android.com/reference/android/provider/MediaStore.html

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