带有选项的Android录制视频

时间:2011-10-22 12:01:57

标签: android video-capture

我想用某些选项录制视频。像最长持续时间,质量等 是否可以在没有自定义实现的情况下执行此操作 - 只需调用intent?

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

1 个答案:

答案 0 :(得分:0)

使用以下代码:

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

如需更多选项,请查看:

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