Delete
intent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(videoFile));
works, but then you have to grab uri with
public void onActivityResult(int requestCode, int resultCode, Intent intent) {
super.onActivityResult(requestCode, resultCode, intent);
if ((requestCode == VIDEO_REQUEST_CODE) && (resultCode == RESULT_OK)) {
}
}
and move the video to another location if necessary functionality.
: MediaStore.EXTRA_OUTPUT ACTION_IMAGE_CAPTURE.