I have five wav files. I want to play them serially from a single Java program using sourceDataLine. But my program is not maintaining the proper sequence. Can anyone provide me code segment?

link|improve this question
7  
No. Show us your code. – Matt Ball Jan 19 at 5:12
what have you tried so far? – Fahim Parkar Jan 19 at 5:28
For better help sooner, post an SSCCE. Though make it for 2 sound samples, not 5. – Andrew Thompson Jan 19 at 5:39
feedback

closed as not a real question by Matt Ball, trashgod, Andrew Thompson, Jonathon, Bill the Lizard Jan 19 at 16:36

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

1 Answer

Did you check the Documentation?

try this example from here:

import java.io.*;
import javax.sound.sampled.*;
/**
 * Use SourceDataLine to read line-by-line from the external sound file.     
 */
public class SoundLineTest {
   public static void main(String[] args) {
      SourceDataLine soundLine = null;
      int BUFFER_SIZE = 64*1024;  // 64 KB

      // Set up an audio input stream piped from the sound file.
      try {
         File soundFile = new File("gameover.wav");
         AudioInputStream audioInputStream = AudioSystem.getAudioInputStream(soundFile);
         AudioFormat audioFormat = audioInputStream.getFormat();
         DataLine.Info info = new DataLine.Info(SourceDataLine.class, audioFormat);
         soundLine = (SourceDataLine) AudioSystem.getLine(info);
         soundLine.open(audioFormat);
         soundLine.start();
         int nBytesRead = 0;
         byte[] sampledData = new byte[BUFFER_SIZE];
         while (nBytesRead != -1) {
            nBytesRead = audioInputStream.read(sampledData, 0, sampledData.length);
            if (nBytesRead >= 0) {
               // Writes audio data to the mixer via this source data line.
               soundLine.write(sampledData, 0, nBytesRead);
            }
         }
      } catch (UnsupportedAudioFileException ex) {
         ex.printStackTrace();
      } catch (IOException ex) {
         ex.printStackTrace();
      } catch (LineUnavailableException ex) {
         ex.printStackTrace();
      } finally {
         soundLine.drain();
         soundLine.close();
      }
   }
}
link|improve this answer
1  
this is at best a comment, no? :-) – Scorpion Jan 19 at 5:35
@Scorpio: I wasnt finished yet. – O.D Jan 19 at 5:38
+1 Excellent edit. – Andrew Thompson Jan 19 at 5:57
Thanx Andrew... – O.D Jan 19 at 6:00
+1 for the answer. "Edit following soon" would have discouraged me to comment. – Scorpion Jan 19 at 6:32
feedback

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