I am using intent for record video.
so i use following code on recordVideo button's click
Videofilepath = "";
Intent intent = new Intent(android.provider.MediaStore.ACTION_VIDEO_CAPTURE);
startActivityForResult(intent,REQUEST_VIDEO_CAPTURED);
and in onActivityResult
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
if (resultCode == Activity.RESULT_OK) {
switch (requestCode) {
case IMAGE_PICK:
this.imageFromGallery(resultCode, data);
break;
case IMAGE_CAPTURE:
this.imageFromCamera(resultCode, data);
break;
case REQUEST_VIDEO_CAPTURED:
this.videoFromCamera(resultCode, data);
break;
default:
break;
}
}
}
private void videoFromCamera(int resultCode, Intent data) {
uriVideo = data.getData();
uploadedFileName="";
Constant.IS_FILE_ATTACH = true;
Toast.makeText(PDFActivity.this, uriVideo.getPath(), Toast.LENGTH_LONG)
.show();
String[] filePathColumn = { MediaStore.Video.Media.DATA };
Cursor cursor = getContentResolver().query(uriVideo, filePathColumn,
null, null, null);
cursor.moveToFirst();
int columnIndex = cursor.getColumnIndex(filePathColumn[0]);
String filePath = cursor.getString(columnIndex);
Videofilepath = filePath;
System.out.println("Videofilepath filepath from camera : "
+ Videofilepath);
cursor.close();
File f = new File(filePath);
System.out.println("file created ? : " + f.exists());
Bitmap bMap = null;
do {
try {
// Simulate network access.
Thread.sleep(3000);
} catch (InterruptedException e) {
e.printStackTrace();
}
} while (!f.exists());
bMap = ThumbnailUtils.createVideoThumbnail(filePath,
MediaStore.Video.Thumbnails.MICRO_KIND);
do {
try {
// Simulate network access.
Thread.sleep(1000);
} catch (InterruptedException e) {
e.printStackTrace();
}
} while (bMap == null);
imageOrVideo = "video";
attachmentvalue.setImageBitmap(bMap);
}
This code is working fine with samsung galaxy Tab. But not working with Nexus 7. May be Nexus 7 have front camera. but i got resultant data intent is null onActivityResult.
so in my Logcat i got the following exception :-
08-08 12:51:31.160: E/AndroidRuntime(10899): FATAL EXCEPTION: main
08-08 12:51:31.160: E/AndroidRuntime(10899): java.lang.RuntimeException: Failure delivering result ResultInfo{who=null, request=200, result=-1, data=Intent { }} to activity {com.example.activity/com.example.PDFActivity}: java.lang.NullPointerException
Made a fork and fixed the problem by storing to a permanent directory which will still be available after the result has been received.
https://github.com/pencilcheck/cordova-plugin-media-capture
Thanks for the workaround!
Here is more brushed and copy-paste usable code:
Tested on Nexus 4 v4.3 JWR66Y
Finally I resolved this issue. Nexus 7 Stores the videos in
DCIM
directory butonActivityResults
it returnsnull
. Its an documented issue with Nexus 7 device.so fix this issue with
intent.putExtra(MediaStore.EXTRA_OUTPUT, fileUri);
the code is as :-
code on record button click:-
code inside switch - case block of onActivityResult :-
// videoFromCameraNexus method
Get the output Media file uri with the following Method
Its works for me.