}
}
}
public static void main(String[] args) throws Exception {
SpeakerIdentification sd = new SpeakerIdentification();
URL url = SpeakerIdentificationDemo.class.getResource("test.wav");
ArrayList<SpeakerCluster> clusters = sd.cluster(url.openStream());
printSpeakerIntervals(clusters, url.getPath());
speakerAdaptiveDecoding(clusters, url);
}