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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T13:44:38+00:00 2026-06-01T13:44:38+00:00

I need to create a class to handle audio AudioTrack. In this class must

  • 0

I need to create a class to handle audio AudioTrack.

In this class must have methods that enqueue audiotracks and play them in sequence synchronously.

Could anyone help me?

I do not know dequeue synchronously and play each part of the audio.

I need to use it because the data is passed to the audiotrack in byte [] is not on file. So I can not use the MediaPlayer.

  • 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-01T13:44:39+00:00Added an answer on June 1, 2026 at 1:44 pm

    You can use following code…

    bufferSize = AudioTrack.getMinBufferSize(sampleRateInHz,
                    AudioFormat.CHANNEL_OUT_MONO, AudioFormat.ENCODING_PCM_16BIT);
    
            if (bufferSize != AudioTrack.ERROR_BAD_VALUE && bufferSize != AudioTrack.ERROR) {
                audioTrack = new AudioTrack(AudioManager.STREAM_MUSIC,
                        this.sampleRateInHz, AudioFormat.CHANNEL_OUT_MONO,
                        AudioFormat.ENCODING_PCM_16BIT, this.bufferSize,
                        AudioTrack.MODE_STREAM);
                if(audioTrack!=null && audioTrack.getState() == AudioTrack.STATE_INITIALIZED){
                    Log.i(LOG_TAG,"Audio Track instance created buffer Size : "+this.bufferSize);
    
                    audioTrack.setPositionNotificationPeriod(320);
                    audioTrack.setPlaybackPositionUpdateListener(this);
                    audioTrack.play();
                    short[] tempBuf =new short[bufferSize/2];
    
                                // now write the code here to fill the tempBuf by reading from the file in shorts or bytes
                    audioTrack.write(tempBuf,0, tempBuf.length);
    
    
    
                }else{
                    Log.e(LOG_TAG,"Unble to create AudioTrack instance");
                }
            } else {
                Log.e(LOG_TAG, "Unable to get the minimum buffer size");
            }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a handle-based class that I need to create a vector of. An
I need to create class Dog and PurebredDog extending Dog. Problem is that Dog
I have a class: class One def initialize; end end I need to create
I have a CLickableBox class that creates boxes for me and now I need
I have a class that is by handle, and I want to copy it
I have built an abstract class that is used to handle command line options
In my Java course I have to create a GUI class that interacts with
We need to create a Server with Scala RemotActors, that can handle multiple clients.
I am trying to create class that will handle multiple downloads at same time
I need to create a DisplayTemplate to handle multiples values of a specific class

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.