shigeki7299 / geopaparazzi

Automatically exported from code.google.com/p/geopaparazzi
0 stars 0 forks source link

think about adding video notes #104

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
what about taking video notes? They could be handled as the audio files.

Original issue reported on code.google.com by andrea.a...@gmail.com on 23 May 2012 at 4:07

GoogleCodeExporter commented 8 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

GoogleCodeExporter commented 8 years ago

Original comment by andrea.a...@gmail.com on 29 Jun 2013 at 12:41