// Process the data
fmt.Fprintf(flags.Output(), " ...processing %q\n", path)
+ context.ResetTimings()
if err := context.Process(data, cb); err != nil {
return err
}
+ context.PrintTimings()
+
// Print out the results
switch {
case flags.GetOut() == "srt":
context.params.SetMaxTokensPerSegment(int(n))
}
+// ResetTimings resets the mode timings. Should be called before processing
+func (context *context) ResetTimings() {
+ context.model.ctx.Whisper_reset_timings()
+}
+
+// PrintTimings prints the model timings to stdout.
+func (context *context) PrintTimings() {
+ context.model.ctx.Whisper_print_timings()
+}
+
// Process new sample data and return any errors
func (context *context) Process(data []float32, cb SegmentCallback) error {
if context.model.ctx == nil {
IsNOT(Token) bool // Test for "No timestamps" token
IsLANG(Token, string) bool // Test for token associated with a specific language
IsText(Token) bool // Test for text token
+
+ PrintTimings()
+ ResetTimings()
}
// Segment is the text result of a speech recognition.