According to Android SDK MediaRecorder.setCamera can be used to recycle the existing camera instance for video capture and preview without resetting the preview. I was not able to find any sample, and all my attempts were futile: I either get the wrong state exception, or MediaRecorder.prepare fails.

  • Does anyone know if this method usable at all?
  • How can I use it then?
  • Any samples available in the Wild Wild Web?

For reference: http://developer.android.com/reference/android/media/MediaRecorder.html#setCamera(android.hardware.Camera)

link|improve this question

feedback

3 Answers

The Android Camera app source provides the best example. After some investigation, I discovered that recorder.setCamera(camera) should be called immediately after instantiation of the MediaRecorder, or at least before any settings are applied to it. Applying any settings (setVideoSource(), etc.) before calling setCamera() results in an error.

link|improve this answer
feedback

Have you tried to use the following functions after creating an instance of mediarecorder?

//Unlocks the camera to allow another process to access it.

mCameraDevice.unlock();

//Sets a Camera to use for recording. Use this function to switch quickly between preview and //capture mode without a teardown of the camera object.

mMediaRecorder.setCamera(mCameraDevice);

link|improve this answer
feedback

I found 2 links you may find useful. Android Camera git repo and a MediaRecorder example

link|improve this answer
May I ask for the reason for this answer to be downrated? Considering when I had responded to this question, the Android Camera has remained the right reference for this question. Is it just a question of someone being lazy to look for what they need in there? Or did you prefer a comment instead of a response? – gamadeus Jan 20 at 2:27
feedback

Your Answer

 
or
required, but never shown

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