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

  • SEARCH
  • Home
  • 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 8243073
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T21:23:13+00:00 2026-06-07T21:23:13+00:00

I ran into a problem when my test phone recorded video and did not

  • 0

I ran into a problem when my test phone recorded video and did not have a external sd-card. i get recording errors because:

Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_MOVIES)

points to the external sd-card and since the external sd does not exist, the phone is not smart enough to point to the internal storage.

  1. Is there a solution to this issue?

  2. If not, how do I record directly to the internal storage?

  • 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-06-07T21:23:15+00:00Added an answer on June 7, 2026 at 9:23 pm

    If you want to test whether an SD card exists or not, read the documentation on Environment.getExternalStorageState(). This includes code that demonstrates how to test if the SD card is mounted, readable and / or writable. It even registers a BroadcastReceiver should the card be removed while your app in running.

    From this you can divert the saved file to internal storage whenever the SD card is not viable.

    Addition from comment

    You don’t provide any detail on how you are currently testing the availability of the SD card, so I’ve generalized the process.

    MediaRecorder mediaRecorder = new MediaRecorder();
    ...
    
    String state = Environment.getExternalStorageState();
    if(Environment.MEDIA_MOUNTED.equals(state))
        mediaRecorder.setOutputFile(Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_MOVIES) + "/video.mp4");
    else
        mediaRecorder.setOutputFile(getFilesDir().getAbsolutePath() + "/video.mp4");
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I ran into a strange problem. In my unit test, I want to check
Never ran into this problem with jQuery before. I have the following: $(document).ready(function() {
I recently started programming my first Cocoa app. I have ran into a problem
Ran into a problem. I have a spawned thread that must call its finally
I just ran into to strange problem, I have a custom tableview cell with
I recently ran into this problem: Rails 3 link_to (:method => :delete) not working
I have several times ran into the same problem, and I would like to
I've ran into a problem while trying to test following IRepository based on NHibernate:
I'm currently working on a test plan and ran into a possible problem and
I ran into a little problem using R… In the following data frame test

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.