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 trial

Android Build a Self-Destructing Message Android App Capturing Photos and Videos Taking a Video Using an Intent

Finally, start the Activity for a result using videoIntent and 0 as the request code (2nd paramet

help mi

CodeChallenge.java
// 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);
George Pirchalaishvili
George Pirchalaishvili
3,747 Points

You have 1 extra line there - remove this:

videoIntent.putExtra (MediaStore.TAKE_VIDEO_QUALITY, 0);

2 Answers

AM STIL STUCK BT I DID WAT YU SAID

George Pirchalaishvili
George Pirchalaishvili
3,747 Points

here 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);