Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 803149
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T23:42:46+00:00 2026-05-14T23:42:46+00:00

I’m new here. I have been trying to create a video capture app using

  • 0

I’m new here. I have been trying to create a video capture app using the android emulator without much success. As far as I know and looking through all the samples and code on the internet (this site and others), I must still be missing a step.

I’ve tried using this sample near the end of this thread made by JonPro:
http://www.anddev.org/viewtopic.php?p=24723#24723

and I’ve tried making my own but the media recorder would always fail on the prepare stage with the most unhelpful message of ‘prepare failed’. I have no clue what I am missing. I seem to have the correct permissions and a SDCard is mounted according to the emulator. Should I be using a android SDK version other than 2.1?

Even though the code in that forum claims to work, I figured out that this line was missing:
recorder.setCamera(camera);

But still no joy as the logs shows that:
‘Failed to get camera(0x16b70) parameters’
when prepare() is called but it still doesn’t make sense as the preview is okay, but no recording! Any help or suggestions will be appreciated.

Edit: Can anyone confirm that this can work for the SDK and the emulator? or I’m I wasting my time trying to get this to work in this version. Am I able to get the source code for the prepare function as it is OpenSource?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-14T23:42:47+00:00Added an answer on May 14, 2026 at 11:42 pm

    The fix for this problem is mCameraDevice.unlock() must be set before prepare. It’s important that this is set after mCameraDevice.setPreviewDisplay(mHolder);

    example:

    /*--------------------------------------surfaceCreated---------------------------------------------*/
    /**
     * Surface Created sets that the surface is created.
     */
     public void surfaceCreated(SurfaceHolder arg0) {
         // TODO Auto-generated method stu1595
            try {
                Log.d(LOG_TAG, "setPreviewDisplay enter");
                mCameraDevice.setPreviewDisplay(mHolder);
                Log.d(LOG_TAG, "setPreviewDisplay exit");
            } catch (IOException e1) {
                // TODO Auto-generated catch block
                e1.printStackTrace();
            }
            mCameraDevice.unlock();
            Log.d("*************", "***********unlock()****");
         isSurfaceCreated = true;
    
    
     }
    

    BR
    P.N

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

No related questions found

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.