Package org.vocvark

Source Code of org.vocvark.Runner

package org.vocvark;

import org.vocvark.DataTypes.Settings;

import java.io.File;

/**
* Date: 11.05.12
*
* @author Vladimir Kravtsov
*/
public final class Runner {

    public static void main(String args[]) {
        File[] fd = new File[]{new File("D:/01-Dunkelheit.mp3")};
        Settings settings = new Settings();
      //  settings.setSaveOverallRecordingFeatures(false);
        FeaturesExtraction extraction = new FeaturesExtraction();
        try {
            extraction.extract(fd, settings);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}
TOP

Related Classes of org.vocvark.Runner

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.