I'm trying to make up a waveform for a clip tha i pass it during run-time . I have taken help from some links like :link 1 and link 2 but i don't understand the calculation part , when some bit shift is done. This is the design of the program that i have prepared so far . Class SingleWaveformPanel has to be written that will conatin all the calculations.

import javax.swing.*;
import java.awt.*;
import java.util.*;
import javax.sound.sampled.*;

class WaveformPanelContainer extends JPanel {
ArrayList singleChannelWaveformPanels = new ArrayList();
AudioInfo audioInfo = null;

WaveformPanelContainer() {
    setLayout( new GridLayout(0,1));
}

public void setAudioToDisplay(AudioInputStream ais) {
   audioInfo = new AudioInfo( ais );
   for( int t = 0 ; t < audioInfo.getNumberOfChannels() ; t++ ) {
    SingleWaveformPanel swp = new SingleWaveformPanel( audioInfo , t );
    singleChannelWaveformPanels.add( swp );
    add( createChannelDisplay( swp , t) );
   }
}

public JComponent createChannelDisplay( SingleWaveformPanel swp , int index ) {
    JPanel panel = new JPanel( new BorderLayout() );
    panel.add( swp , BorderLayout.CENTER );
    JLabel label = new JLabel("Channel " + (++index) );
    panel.add( label , BorderLayout.NORTH );
    return panel;
}

public static void main( String args[] ) {
   try {
    JFrame fr = new JFrame("Waveform Display Simulator");
    fr.setBounds(200,200,500,350);
    File file = new File("E:\\file.wav");
    AudioInputStream ais = AudioSystem.getAudioInputStream( file );
    WaveformPanelContainer container = new WaveformPanelContainer();
    container.setAudioToDisplay( ais );
    fr.getContentPane().setLayout( new BorderLayout() );
    fr.getContentPane().add( container , BorderLayout.CENTER );
    fr.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
    fr.setVisible(true);
   }  catch( Exception exc ) {
     System.out.println( exc );
      }
}

This is what i have managed so far from link 1 . Can you give link me with some tutorials etc. that teach properly how to create waveforms with mathematical part clearly explained.

link|improve this question

60% accept rate
This isn't a programming question i think.. I don't know if you have the question solved.. Anyway, if what you don't understand is the shift part. It is simple.. The information is stored in a pattern of bytes (8 bits), but the samples are of 16 bits, so they are stored in two bytes (8bits + 8 bits) and in order to get them back, you need to concatenate the bits.. And the way to get this done is as explained in the link1. You will have to create two 16 bits variables, and "put" the 8 bits in the correspondient position, and then "add" them in order to get the 16-bit value.. More questions? – Vic Sep 19 '11 at 12:12
feedback

1 Answer

There's no complicated math involved, you will just map the sample amplitude to a pixel position. The part of the code where you mention bit shifting - I followed your second link, and I believe that's around line 750:

 if (format.isBigEndian()) {
    for (int i = 0; i < nlengthInSamples; i++) {
         /* First byte is MSB (high order) */
         int MSB = (int) audioBytes[2*i];
         /* Second byte is LSB (low order) */
         int LSB = (int) audioBytes[2*i+1];
         audioData[i] = MSB << 8 | (255 & LSB);
     }
 } else {
     for (int i = 0; i < nlengthInSamples; i++) {
         /* First byte is LSB (low order) */
         int LSB = (int) audioBytes[2*i];
         /* Second byte is MSB (high order) */
         int MSB = (int) audioBytes[2*i+1];
         audioData[i] = MSB << 8 | (255 & LSB);
     }
 }

The bit shift in this code just multiplies the MSB by 256. The purpose of this code is to convert the raw audio data to sample values, accounting for endianness of the data. If the audio data is 16 bit per sample, then each sample is represented by 2 bytes, which can be Big Endian or Little Endian. If a 2-byte unsigned integer contains 00000001 00000000 and it's BigEndian, that's 256. If it's LittleEndian, the value is 1. You must know the endianness of your audio data ahead of time.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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