tags:

views:

35

answers:

0

I know, iPhone has method for set max length of video picked from gallery(and video will be cut automatically). But on android i can't find same method. Anybody knows solution for taking video from gallery and cut it? Something like

Intent intent = new Intent(Intent.ACTION_GET_CONTENT, null);
intent.setType("video/*");
// i hope something like that available
intent.putExtra("crop_video", "true");
intent.putExtra("crop_time", 30);

Thanks.