Package com.neophob.sematrix.core.sound

Examples of com.neophob.sematrix.core.sound.SoundMinim


    this.colorSets = InitHelper.getColorPalettes(fileUtils);

    //choose sound implementation
    if (ph.isAudioAware()) {
      try {   
        sound = new SoundMinim(ph.getSoundSilenceThreshold());     
      } catch (Exception e) {
        LOG.log(Level.WARNING, "FAILED TO INITIALIZE SOUND INSTANCE. Disable sound input.");       
      } catch (Error e) {
        LOG.log(Level.WARNING, "FAILED TO INITIALIZE SOUND INSTANCE (Error). Disable sound input.", e);     
      }     
View Full Code Here

TOP

Related Classes of com.neophob.sematrix.core.sound.SoundMinim

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.