Package org.jwildfire.create.tina.audio

Examples of org.jwildfire.create.tina.audio.JLayerInterface


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);
    }
  }
View Full Code Here

TOP

Related Classes of org.jwildfire.create.tina.audio.JLayerInterface

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.