how can i mix two audio files into one file so that the resultant file can play two files simultaneously? please help.. here what i am doing is that i am taking two files and concat them into another file.. but i want the file to be played simultaneously..

    private void saveAudio1() {
    try {                                      

        AudioInputStream clip1 = AudioSystem.getAudioInputStream(file1);
        AudioInputStream clip2 = AudioSystem.getAudioInputStream(file2);
        Collection list=new ArrayList();

        AudioInputStream appendedFiles =
                new AudioInputStream(
                new SequenceInputStream(clip1, clip2),
                clip1.getFormat(),
                clip1.getFrameLength() + clip2.getFrameLength());
        if (dlgOpenFile == null) {
            dlgOpenFile = new FileDialog(this, "Save As...", FileDialog.SAVE);
        }
        if (cfgJMApps != null) {
            nameFile = cfgJMApps.getLastOpenFile();
        }
        if (nameFile != null) {
            dlgOpenFile.setFile(nameFile);
        }

        dlgOpenFile.show();
        nameFile = dlgOpenFile.getFile();
        if (nameFile == null) {
            return;
        }

        nameFile = dlgOpenFile.getDirectory() + nameFile;
        if (cfgJMApps != null) {
            cfgJMApps.setLastOpenFile(nameFile);
        }


        AudioSystem.write(appendedFiles,
                AudioFileFormat.Type.WAVE,
                new File(nameFile));
    } catch (Exception e) {
        e.printStackTrace();
    }
}
link|improve this question
feedback

2 Answers

I just found a link http://www.jsresources.org/examples/AudioConcat.html

It seems like he is doing it.. The source code can be found on the page! Hope this helps you out.

link|improve this answer
he is using a package that is not present in netbeans. So i need another source.. import org.tritonus.share.sampled.TConversionTool; this is the package – pal sarkar Feb 10 at 11:45
feedback

You need to read sample by sample from both streams, perfrom addition of those samples (be carefull of overflow) and then store new added sample to new AudioInputStream. Check here to see how to convert OutputStream to InputStream, when you'll be able to make another AudioInputStream and save your audio file.

link|improve this answer
i am supposed to play both the files simultaneously... can i do that in this way? i am not sure.. plz help me.. thx – pal sarkar Feb 15 at 11:12
Sorry for late answer. This is the nature of sound. Sampling is the mean to convert physical sound to numbers. When you hear two sounds simultaneously, the physics and mathematics say that you actually add the numbers of the first sound with the numbers of the second sound. Now, the ear itself works as a cushion, so after addition it actually lowers the volume of the sum. You may or may not perform that "lowering". – RockyMM Feb 29 at 11:47
Or, more easily, you can use Threads, such as here and here. – RockyMM Feb 29 at 12:05
feedback

Your Answer

 
or
required, but never shown

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