How do you capture Video by calling the Android camera app using an intent in 4.3. I had it working in 4.2 and below. Even Google's sample is broken. Is this a bug? Or has Google changed how they return recorded video. Image capture still works.
I still get a RESULT_OK back but the intent data is null on MediaStore.ACTION_VIDEO_CAPTURE intents.
The problem
Yes, there is a bug starting with Android 4.3 release.
As the documentation says:
What I have experienced is that the returned data field value is
Null
instead of containing the video file'sUri
.The solution
For now, is to pass
MediaStore.EXTRA_OUTPUT
to theIntent
specifying the output location for the video file if the device's API Version is 18. This works as intended.Since you were using the default gallery location for storing your videos, my guess is that you will want to keep it the same. So for this you need to set
EXTRA_OUTPUT
as follows.Insert a new record into MediaStore.Video.Media.EXTERNAL_CONTENT_URI:
Being
value
aContentValues
with display name, file type and file path to the new video file. E.g. :Pass the returned value,
videoUri
, as theEXTRA_OUPUT
to theIntent
.