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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T18:58:05+00:00 2026-05-25T18:58:05+00:00

How can i read an AudioInputStream upto a particular number of bytes/microsecond position ?

  • 0

How can i read an AudioInputStream upto a particular number of bytes/microsecond position ?
For example :

AudioInputStream ais = AudioSystem.getAudioInputStream( new File("file.wav") );
// let the file.wav be of y bytes

Now i want to obtain an AudioInputStream that has data upto some x bytes where x < y bytes.

How can i do that ?

I have been thinking hard but haven’t got any method to do that ?

  • 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-25T18:58:06+00:00Added an answer on May 25, 2026 at 6:58 pm

    The code below shows you how to copy a part of an audio stream, reading from one file and writing to another.

    import java.io.*;
    import javax.sound.sampled.*;
    
    class AudioFileProcessor {
    
      public static void main(String[] args) {
        copyAudio("/tmp/uke.wav", "/tmp/uke-shortened.wav", 2, 1);
      }
    
      public static void copyAudio(String sourceFileName, String destinationFileName, int startSecond, int secondsToCopy) {
        AudioInputStream inputStream = null;
        AudioInputStream shortenedStream = null;
        try {
          File file = new File(sourceFileName);
          AudioFileFormat fileFormat = AudioSystem.getAudioFileFormat(file);
          AudioFormat format = fileFormat.getFormat();
          inputStream = AudioSystem.getAudioInputStream(file);
          int bytesPerSecond = format.getFrameSize() * (int)format.getFrameRate();
          inputStream.skip(startSecond * bytesPerSecond);
          long framesOfAudioToCopy = secondsToCopy * (int)format.getFrameRate();
          shortenedStream = new AudioInputStream(inputStream, format, framesOfAudioToCopy);
          File destinationFile = new File(destinationFileName);
          AudioSystem.write(shortenedStream, fileFormat.getType(), destinationFile);
        } catch (Exception e) {
          println(e);
        } finally {
          if (inputStream != null) try { inputStream.close(); } catch (Exception e) { println(e); }
          if (shortenedStream != null) try { shortenedStream.close(); } catch (Exception e) { println(e); }
        }
      }
    
      public static void println(Object o) {
        System.out.println(o);
      }
    
      public static void print(Object o) {
        System.out.print(o);
      }
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How can I read a file to bytes in Java? It is important to
I can read settings like this, for example: final String mytest = System.getString(this.getContentResolver(), System.AIRPLANE_MODE_ON);
How you can read a file (text or binary) from a batch file? There
For what I can read, it is used to dispatch a new thread in
In Java you can read a file embedded inside a JAR-file by using the
I know that NSUserDefaults can read the key and value from plist file. Is
libjpeg can read JPEG data from a FILE* or a buffer. My data is
Using ConfigParser I can read value of key easily as shown in the example
I can read the connection strings from the config file, however I need to
I can read the input of a xml file in an array simply like

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.