long startTime = seg.getStartTime();
long endTime = seg.getStartTime() + seg.getLength();
t = new TimeFrame(startTime, endTime);
// Decode again with updated SpeakerProfile
recognizer.startRecognition(url.openStream(), t);
while ((result = recognizer.getResult()) != null) {
System.out.format("Hypothesis: %s\n",
result.getHypothesis());
}
recognizer.stopRecognition();