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 8388759
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T18:32:32+00:00 2026-06-09T18:32:32+00:00

I searched around but haven’t found the answer. I’m recording video using MediaRecorder class

  • 0

I searched around but haven’t found the answer. I’m recording video using MediaRecorder class and setMaxDuration(10000) method. However I want to show how much time has elapsed in a progress bar of this 10 seconds. I only see examples of using getDuration method with MediaPlayer class. Can anyone give me an example of how to use MediaRecorder with progress bar? Thanks a lot.

  • 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-09T18:32:33+00:00Added an answer on June 9, 2026 at 6:32 pm

    Just use a Timer.

    //fires once a second, decrease this to fire more frequently
    private static final int TIMER_FREQ = 1000; 
    
    //ProgressBar setup. You should do this in a way more tailored to your needs,
    //but I've included it anyway
    final ProgressBar progressBar = new ProgressBar(this); //where this is a Context
    progressBar.setMax(10000);
    
    Timer progressBarAdvancer = new Timer();
    progressBarAdvancer.scheduleAtFixedRate(new TimerTask() {
    
            public void run() {
                progressBar.setProgress(progressBar.getProgress() + TIMER_FREQ);
            }
        },
        0, //Delay before first execution
        TIMER_FREQ); 
    

    This will operate the progressBar on a separate thread from the recording, but it will finish in 10 seconds, at which time you can stop the recording, finalize, and such.

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

Sidebar

Related Questions

Ok, I've searched around here but haven't found anything pointing to a solid answer.
I've searched around a bit, but haven't found a good answer yet on how
I've searched around a bit, but haven't found a satisfactory answer, so I'd like
I've searched around but haven't found any good examples or tutorials of saving audio
Searched around on SO for an answer. Found some interesting stuff but I am
I've searched around but haven't quite found what I'm looking for. In a nutshell
I've searched around and haven't found an answer to this. What I would like
I've searched around, but haven't found a duplicate of this question, unfortunately. File1: var
I've searched around for a bit, but haven't been able to find anything useful
I've searched around and haven't found anything, which is surprising because of how common

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.