super();
try {
player = new PCMFilePlayerLeveler (f);
} catch (Exception ioe) {
add (new JLabel ("Error: " +
ioe.getMessage()));
return;
}
DataLine line = player.getLine();
// layout
// line 1: name
setLayout (new BoxLayout (this, BoxLayout.Y_AXIS));
add (new JLabel ("File: " +
player.getFile().getName()));
// line 2: levels
add (new DataLineLevelMeter (line));
// line 3: format info as textarea
AudioFormat format = line.getFormat();
JTextArea ta = new JTextArea();
ta.setBorder (new TitledBorder ("Format"));
ta.append ("Encoding: " +
format.getEncoding().toString() + "\n");
ta.append ("Bits/sample: " +
format.getSampleSizeInBits() + "\n");
ta.append ("Channels: " +
format.getChannels() + "\n");
ta.append ("Endianness: " +
(format.isBigEndian() ? " big " : "little") + "\n");
ta.append ("Frame size: " +
format.getFrameSize() + "\n");
ta.append ("Frame rate: " +
format.getFrameRate() + "\n");
add (ta);
// now start playing
player.start();