public class EnvelopeMP3Data {
private final RecordedFFT fft;
public EnvelopeMP3Data(String pMPFilename) {
try {
JLayerInterface jLayer = new JLayerInterface();
fft = jLayer.recordFFT(pMPFilename);
}
catch (Throwable ex) {
throw new RuntimeException(ex);
}
}