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);
Use below code :
For more options have a look at this :
http://developer.android.com/reference/android/provider/MediaStore.html