* @param args acoustic model, dictionary, audio file, text
*/
public static void main(String args[]) throws Exception {
File file = new File(args[2]);
SpeechAligner aligner = new SpeechAligner(args[0], args[1], null);
splitStream(file, aligner.align(file.toURI().toURL(), args[3]));
}
private static void splitStream(File inFile, List<WordResult> results)
throws UnsupportedAudioFileException, IOException
{