I used this class to play my Wav file.

Its very good but How to start my wav file on some position (KB or second)?

auline.start();
    int nBytesRead = 0;
    byte[] abData = new byte[EXTERNAL_BUFFER_SIZE];



    try {
        while (nBytesRead != -1) {
            nBytesRead = audioInputStream.read(abData, 0, abData.length);
            System.out.println("s");
            if (nBytesRead >= 0)
                auline.write(abData, 0, nBytesRead);
        }
    } catch (IOException e) {
        return;
    } finally {
        auline.drain();
        auline.close();
    }

This is part of the code.

link|improve this question

10% accept rate
feedback

2 Answers

up vote 1 down vote accepted

A Clip(1) makes it easy to start a sound from wherever is needed (in seconds). For an example see the Clip code in the JavaSound info. page.

  1. See especially.
link|improve this answer
Thanks Andrew, Its solved my problem – Kerem Bekman Aug 5 '11 at 9:03
Glad you got it sorted. :-) – Andrew Thompson Aug 5 '11 at 9:27
feedback

Use this value offset :

0 < offset < lengthOfArray

so it will start reading from the current value of offset and hence write only the read data. Now you are using the value of offset = 0

auline.write(abData, 0, nBytesRead) --- > auline.write(abData, offset, nBytesRead)

where offset is greater than 0 but less than nBytesRead See the Doc #write(byte[], int, int)

link|improve this answer
Yes I tried auline.write(abData, EXTERNAL_BUFFER_SIZE*(n), nBytesRead); but It isnt work, And I get error... Now I am using Clip and its working Thank you for reply – Kerem Bekman Aug 5 '11 at 9:03
@ Kerem Bekman what error do you get ? – Suhail Gupta Aug 5 '11 at 9:17
Exception in thread "Thread-6" java.lang.IndexOutOfBoundsException at java.io.FileInputStream.readBytes(Native Method) at java.io.FileInputStream.read(FileInputStream.java:199) at javax.sound.sampled.AudioInputStream.read(AudioInputStream.java:275) at akorbulsoundrecorder.AePlayWave.run(AePlayWave.java:90) – Kerem Bekman Aug 5 '11 at 12:26
how did you actually implement the statement nBytesRead = audioInputStream.read(abData, 0, abData.length); after i gave you the answer? – Suhail Gupta Aug 5 '11 at 12:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.