Package javaFlacEncoder

Examples of javaFlacEncoder.FLAC_FileEncoder.encode()


  private void convert(){
    FLAC_FileEncoder encoder1 = new FLAC_FileEncoder();
    File infile = this.croppedWaveFile;
    File outfile = new File("recording.flac");
    //encoder1.useThreads(false);
    encoder1.encode(infile, outfile);
  }

  /** Very Similary to isSilent, except this method will record until the maxRMS falls below a given threshold*/
  private void autoStop(){

View Full Code Here


  private void convert(){
    FLAC_FileEncoder encoder1 = new FLAC_FileEncoder();
    File infile = this.croppedWaveFile;
    File outfile = new File("recording.flac");
    encoder1.useThreads(true);
    encoder1.encode(infile, outfile);
  }

  /** Very Similary to isSilent, except this method will record until the maxRMS falls below a given threshold*/
  private void autoStop(){

View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.