Android 录制视频的选项
我想使用某些选项来录制视频。比如最长持续时间、质量等。 是否可以在没有自定义实现的情况下做到这一点 - 只需调用意图?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用下面的代码:
有关更多选项,请查看:
http://developer. android.com/reference/android/provider/MediaStore.html
Use below code :
For more options have a look at this :
http://developer.android.com/reference/android/provider/MediaStore.html