I would like to create a short video clip using the MediaRecorder, but I don't know how to use it.

In my manifest file I added these permissions before the application-end-tag:

    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.RECORD_VIDEO" />
</application>

And I create a MediaRecorder with this code when the user press a button:

    private void startRecording() {
    mRecorder = new MediaRecorder();
    mRecorder.setVideoSource(MediaRecorder.VideoSource.CAMERA);
    mRecorder.setVideoEncoder(MediaRecorder.VideoEncoder.H264);
    mRecorder.setOutputFormat(MediaRecorder.OutputFormat.MPEG_4);
    mRecorder.setOutputFile("myvideo.mpeg4");

    try {
        mRecorder.prepare();
    } catch (IOException e) {

    }
    mRecorder.start();
}

But when I run that code I get a "Force close - The application has stopped unexpectedly. Please try again" message. How should I use MediaRecorder and how can I debug my application to see what causes the exception? Do I need to add any other user permissions to my manifest file?

link|improve this question

Can you post the logcat for more details – Andro Selva Aug 12 '11 at 9:36
feedback

1 Answer

You MUST set a preview display in order to use the media recorder for video recording. See MediaRecorder tutorial

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.