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.
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