Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

My video recording app works well on various devices with android 2.3.6 or higher, however it fails on the GalaxyTab with an IOException and not much explanations.

The app records at the highest quality available, on the galaxy SII, I had to implement some dedicated code to get it working, as explained in CamcorderProfile.QUALITY_HIGH resolution produces green flickering video

Anybody aware of similar trick for the GalaxyTab ? I do not have this device, I just got error report from it :-S

I tried to get more info on the failure by looking at the MediaRecorder code here http://grepcode.com/file/repository.grepcode.com/java/ext/com.google.android/android/2.3.6_r1/android/media/MediaRecorder.java?av=f but line 600 is a blank line ! Does anyone knows where to find the actual sources ??

More precisely, I've got this exception and stack frame:

java.io.IOException: prepare failed.
at android.media.MediaRecorder._prepare(Native Method)
at android.media.MediaRecorder.prepare(MediaRecorder.java:600)
at my code, where I call prepare()
at android.os.Handler.handleCallback(Handler.java:587)
at android.os.Handler.dispatchMessage(Handler.java:92)
at android.os.Looper.loop(Looper.java:130)
at android.app.ActivityThread.main(ActivityThread.java:3687)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:507)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:842)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:600)
at dalvik.system.NativeStart.main(Native Method)

the device info:

Build.DEVICE;             SHW-M180S
Build.DISPLAY;            GINGERBREAD.TJ24
Build.HARDWARE;           shw-m180s
Build.MANUFACTURER;       samsung
Build.MODEL;              SHW-M180S
Build.PRODUCT;            SHW-M180S
Build.TYPE;               user
Build.VERSION.CODENAME;   REL
Build.VERSION.INCREMENTAL;TJ24
Build.VERSION.RELEASE;    2.3.6
Build.VERSION.SDK;        10
Build.VERSION.SDK_INT;    10

here is my code:

    //1 Open Camera - Use the Camera.open() to get an instance of the camera object.
    mCameraDevice = Camera.open();
    mCameraDevice.lock();           // lock camera for later use

    mProfile = CamcorderProfile.get(CamcorderProfile.QUALITY_HIGH);

    if(Build.MODEL.equalsIgnoreCase("GT-I9100")){//Samsung galaxy 2 workaround for HD recording
        //The trick is in the camera initialization. After instantiating your Camera object, do the following:
        android.hardware.Camera mCamera = mCameraDevice;
        Camera.Parameters mParameters = mCamera.getParameters();
        if ( mParameters == null ) {
            showDialog("ERROR: "+"Error reading camera parameters");
            return;
        }

// green mess in video file without this
        mParameters.set( "cam_mode", 1 );

// must be set to the VIDEO size, not the preview size,
// or the video won't be recorded.
        mParameters.setPreviewSize(mProfile.videoFrameWidth, mProfile.videoFrameHeight);

// Without this, MediaRecorder.start() sleeps for approx 8.5 sec on my SGS2 before
// start recording; some other SGS2 may not be affected
        if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.GINGERBREAD)
            mParameters.setFocusMode(Camera.Parameters.FOCUS_MODE_CONTINUOUS_VIDEO); // works
        else
            mParameters.setFocusMode(Camera.Parameters.FOCUS_MODE_INFINITY); // works as well

        mCamera.setParameters(mParameters); // catch RuntimeException
    }


    //2 Connect Preview - Prepare a live camera image preview by connecting a SurfaceView to the camera using Camera.setPreviewDisplay().
    // Camera setup is based on the API Camera Preview demo
    //mCamera.setPreviewDisplay(holder);
    mCameraDevice.setPreviewDisplay(mSurfaceHolder);
    //genRuntimeException();
    //3 Start Preview - Call Camera.startPreview() to begin displaying the live camera images.
    //Camera.Parameters parameters = mCameraDevice.getParameters();
    //parameters.setPreviewSize(160, 120);
    //mCamera.setParameters(parameters);
    //parameters.setPreviewSize(mProfile.videoFrameWidth, mProfile.videoFrameHeight);
    //parameters.setPreviewFrameRate(mProfile.videoFrameRate);
    //mCameraDevice.startPreview(); //NOOOOOOOOOOOOOOOOOOOOOOOOOO : with this call, the preview starts now but stops when mVideoRecorder.prepare() is called

    //4 Start Recording Video - The following steps must be completed in order to successfully record video:
    //4.a Unlock the Camera - Unlock the camera for use by MediaRecorder by calling Camera.unlock().
    mCameraDevice.unlock();

    //4.b Configure MediaRecorder - Call in the following MediaRecorder methods in this order. For more information, see the MediaRecorder reference documentation.
    //4.b.1 setCamera() - Set the camera to be used for video capture, use your application's current instance of Camera.
    //mVideoRecorder = new MediaRecorder();
    createMediaRecorder();
    mVideoRecorder.setCamera(mCameraDevice);

    //4.b.2 setAudioSource() - Set the audio source, use MediaRecorder.AudioSource.CAMCORDER.
    mVideoRecorder.setAudioSource(MediaRecorder.AudioSource.CAMCORDER);

    //4.b.3 setVideoSource() - Set the video source, use MediaRecorder.VideoSource.CAMERA.
    mVideoRecorder.setVideoSource(MediaRecorder.VideoSource.CAMERA);

    //4.b.4 Set the video output format and encoding. For Android 2.2 (API Level 8) and higher,
    //use the MediaRecorder.setProfile method, and get a profile instance using CamcorderProfile.get().
    //mProfile = CamcorderProfile.get(CamcorderProfile.QUALITY_HIGH);
    mVideoRecorder.setProfile(mProfile);
    mVideoRecorder.setMaxDuration(Integer.MAX_VALUE);
    //mVideoRecorder.setMaxFileSize(0);
    // Set maximum file size.
    // remaining >= LOW_STORAGE_THRESHOLD at this point, reserve a quarter
    // of that to make it more likely that recording can complete
    // successfully.

    try {
        mVideoRecorder.setMaxFileSize(maxFileSize);
    } catch (RuntimeException exception) {
        // We are going to ignore failure of setMaxFileSize here, as
        // a) The composer selected may simply not support it, or
        // b) The underlying media framework may not handle 64-bit range
        // on the size restriction.
    }

    //4.b.5 setOutputFile() - Set the output file, use getOutputMediaFile(MEDIA_TYPE_VIDEO).toString() from the example method in the Saving Media Files section.
    mVideoRecorder.setOutputFile(getVideoOutputFile().toString());
    //mVideoRecorder.setMaxDuration(30000); // limit to 30 seconds

    //4.b.6 setPreviewDisplay() - Specify the SurfaceView preview layout element for your application. Use the same object you specified for Connect Preview.
    mVideoRecorder.setPreviewDisplay(mSurfaceHolder.getSurface());
    //4.c Prepare MediaRecorder - Prepare the MediaRecorder with provided configuration settings by calling MediaRecorder.prepare().
    mVideoRecorder.prepare();
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.