Android 视频录制有控件吗?
我需要使用标准控件捕获视频,目前我可以使用媒体记录器捕获视频,我需要一个计时器来显示视频录制的持续时间和一些标准控件来录制视频。还有其他班可以吗?
I need to capture the video with standard controls , at present i can capture the video using mediarecorder, I need a timer to show duration of video recording and some standard control to record video. Is there any other class is available?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Android 中录制视频的标准方法是使用 Intent MediaStore.ACTION_VIDEO_CAPTURE。您将获得计时器和控件,就像开始标准视频捕获时一样。唯一的附加选项是您可以接受或拒绝录制的视频,因为录制的视频信息是通过 Intent 结果返回的(因此您还可以得出用户是否取消视频录制的结论)。
Standard approach to record video in Android is to use Intent MediaStore.ACTION_VIDEO_CAPTURE. You get timer and controls like when you start standard video capture. The only additional option is that you can accept or reject recorded video, since recorded video info is returned back via Intent result (so you can also conclude if user canceled video recording).