Is there a way to either select the video format output of the video recorded by setting an Intent extra? Or can I do it in a post-recording processing function? What I'm trying to do is take the video that I just recorded and send it in an MMS message using an ACTION_SEND intent, but it won't take the .mp4 format that the camera is storing it as.
How would I go about doing this?
Edit: This is what my recording code is:
Intent videoIntent = new Intent(MediaStore.ACTION_VIDEO_CAPTURE);
videoIntent.putExtra(MediaStore.EXTRA_DURATION_LIMIT, 60);
videoIntent.putExtra(MediaStore.EXTRA_VIDEO_QUALITY, 0);
startActivityForResult(videoIntent, VIDEO_ACTIVITY);