How can i read an AudioInputStream upto a particular number of bytes/microsecond position ? For example :
AudioInputStream
AudioInputStream ais = AudioSystem.get
Now that you have the stream you can read one byte at a time up to the maximum number ob bytes you want using read(), or read a fixed number of bytes with read(byte[] b).