Open GoogleCodeExporter opened 9 years ago
to remember:
Intent intent = new Intent(android.provider.MediaStore.ACTION_VIDEO_CAPTURE);
//Specify target file
String MyVideoFilePath = "/sdcard/test/myvideo.3gp";
File imageFile = new File(MyVideoFilePath);
Uri imageFileUri = Uri.fromFile(imageFile);
intent.putExtra(android.provider.MediaStore.EXTRA_OUTPUT, imageFileUri);
startActivityForResult(intent, REQUEST_VIDEO_CAPTURED);
Original comment by andrea.a...@gmail.com
on 29 Jun 2013 at 12:40
Original comment by andrea.a...@gmail.com
on 29 Jun 2013 at 12:41
Original issue reported on code.google.com by
andrea.a...@gmail.com
on 23 May 2012 at 4:07