这个属性 android.provider.MediaStore.EXTRA_SIZE_LIMIT 是否有效?

发布于 2024-10-17 10:05:42 字数 99 浏览 3 评论 0原文

我在应用程序中使用 MediaStore 来捕获视频,但根据编码器,它只能捕获 8 或 14 秒。

有没有其他方法可以增加视频的持续时间和大小。

谢谢。

I use the MediaStore in my application for capturing the video, but it will capture only 8 or 14 seconds ,based on encoder.

Is there any other way to increase the duration and size of video.

Thanks.

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

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

发布评论

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

评论(1

帥小哥 2024-10-24 10:05:42

您可以在 Intent 中按时间设置持续时间限制,如下所示:

Intent intent = new Intent(MediaStore.ACTION_VIDEO_CAPTURE);
intent.putExtra(MediaStore.EXTRA_DURATION_LIMIT, 4); // i.e. 4 secs maximum

You can set duration limit by time in you Intent like that:

Intent intent = new Intent(MediaStore.ACTION_VIDEO_CAPTURE);
intent.putExtra(MediaStore.EXTRA_DURATION_LIMIT, 4); // i.e. 4 secs maximum
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文