Hi All, I am using the following intent to invoke the camera and save the recording as a specific name:
filepath = "/sdcard/testfolder/testvid.mp4"; File vidfile = new File(filepath); Uri viduri = Uri.fromFile(vidfile); Intent i = new Intent(android.provider.MediaStore.ACTION_VIDEO_CAPTURE); i.putExtra(android.provider.MediaStore.EXTRA_OUTPUT, viduri); startActivity(i); However the application keeps on crashing (The application has .... stopped unexpectedly). But I noticed that the file has been saved with the required name in the directory. Any idea how can i resolve this? Basically I want to start the video camera and save the subsequent recording in a specific directory and name. Thanks In Advance, Perumal -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

