#while((result=recognizer.getResult())!=null){
//codegoesherePrint(result.getTimeFrame());// some method called getTimeFrame()
}
IS there a method like getTimeFrame() that gives the timeline of the particular hyptothesis?
e.g. 10001-90210-01803
1st prediction (10001): timeline-> 0444, 4640
2nd prediction (90210): timeline-> 4744, 6742
3rd prediction (01803): timeline-> 6940, 8230
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
IS there a method like getTimeFrame() that gives the timeline of the particular hyptothesis?
e.g. 10001-90210-01803
1st prediction (10001): timeline-> 0444, 4640
2nd prediction (90210): timeline-> 4744, 6742
3rd prediction (01803): timeline-> 6940, 8230
API returns word times. To find utterance start time you can get minimum of word starts and maximum of word ends.
Thank you for the answer.