Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have wav file which is mixed of five files and i have get the frequency of each layer from the single mixed file. I written a program which will get frequency of single file, below is code.

public static void main(String[] args) {
        AudioInputStream audioInputStream = null;
        File soundFile = new File("E:\\Funk_&_Rare_Groove_samples1\\Dusty1-break1.wav");
         try {
             audioInputStream = AudioSystem.getAudioInputStream(soundFile);
        } catch (UnsupportedAudioFileException | IOException e1) {
            // TODO Auto-generated catch block
            e1.printStackTrace();
        }

        //Get Audio Format information
         AudioFormat audioFormat = audioInputStream.getFormat();

         //Handle opening the line
         SourceDataLine line = null;
         DataLine.Info  info = new DataLine.Info(SourceDataLine.class, audioFormat);
         try {
            line = (SourceDataLine) AudioSystem.getLine(info);
            line.open(audioFormat);
         } catch (LineUnavailableException e) {
            e.printStackTrace();
            System.exit(1);
         } catch (Exception e) {
            e.printStackTrace();
            System.exit(1);
         }

         //Start playing the sound
         line.start();


        //Write the sound to an array of bytes
        int nBytesRead = 0;
        byte[]  abData = new byte[EXTERNAL_BUFFER_SIZE];
        while (nBytesRead != -1) {
            try {
                    nBytesRead = audioInputStream.read(abData, 0, abData.length);

            } catch (IOException e) {
                    e.printStackTrace();
            }
            if (nBytesRead >= 0) {
                    int nBytesWritten = line.write(abData, 0, nBytesRead);
            }

        }

        //close the line      
        line.drain();
        line.close();


        //Calculate the sample rate
        float sample_rate = audioFormat.getSampleRate();
        System.out.println("sample rate = "+sample_rate);

        //Calculate the length in seconds of the sample
        float T = audioInputStream.getFrameLength() / audioFormat.getFrameRate();
        System.out.println("T = "+T+ " (length of sampled sound in seconds)");

        //Calculate the number of equidistant points in time
        int n = (int) (T * sample_rate) / 2;
        System.out.println("n = "+n+" (number of equidistant points)");

        //Calculate the time interval at each equidistant point
        float h = (T / n);
        System.out.println("h = "+h+" (length of each time interval in seconds)");
        }

But i got stocked how to get frequency of each layer from the mixed file.

Anyone can suggest on this?

Thanks.

share|improve this question
Are you saying the file consists of a mix of five pure tones (sine waves) of different frequencies? Separating the frequencies requires Fourier Analysis, for which there are many online resources and Java libraries. – Jim Garrison Jun 22 '12 at 23:53

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.