Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialMUZ140584 Heredity Mbundire
4,979 PointsFinally, start the Activity for a result using videoIntent and 0 as the request code (2nd paramet
help mi
// This code is excerpted from an Activity
Uri uri = getOutputMediaFileUri(MEDIA_TYPE_VIDEO);
Intent videoIntent = new Intent(MediaStore.ACTION_VIDEO_CAPTURE);
videoIntent.putExtra(MediaStore.EXTRA_OUTPUT, uri);
videoIntent.putExtra(MediaStore.EXTRA_DURATION_LIMIT, 30);
videoIntent.putExtra (MediaStore.TAKE_VIDEO_QUALITY, 0);
startActivityForResult(chooseVideoIntent, PICK_VIDEO_REQUEST);
2 Answers
MUZ140584 Heredity Mbundire
4,979 PointsAM STIL STUCK BT I DID WAT YU SAID
George Pirchalaishvili
3,747 Pointshere is full code
// This code is excerpted from an Activity
Uri uri = getOutputMediaFileUri(MEDIA_TYPE_VIDEO);
Intent videoIntent = new Intent(MediaStore.ACTION_VIDEO_CAPTURE);
videoIntent.putExtra ( MediaStore.EXTRA_OUTPUT, uri);
videoIntent.putExtra ( MediaStore.EXTRA_DURATION_LIMIT, 30);
startActivityForResult (videoIntent, 0);
George Pirchalaishvili
3,747 PointsGeorge Pirchalaishvili
3,747 PointsYou have 1 extra line there - remove this:
videoIntent.putExtra (MediaStore.TAKE_VIDEO_QUALITY, 0);