Fix endpointing with microphone (#64)

This commit is contained in:
Fangjun Kuang
2023-02-25 14:30:44 +08:00
committed by GitHub
parent e4b79ad34b
commit fb1e24bebb
4 changed files with 15 additions and 6 deletions

View File

@@ -132,8 +132,11 @@ as the device_name.
display.Print(segment_index, text);
}
if (!text.empty() && is_endpoint) {
++segment_index;
if (is_endpoint) {
if (!text.empty()) {
++segment_index;
}
recognizer.Reset(stream.get());
}
}

View File

@@ -147,8 +147,11 @@ for a list of pre-trained models to download.
display.Print(segment_index, text);
}
if (!text.empty() && is_endpoint) {
++segment_index;
if (is_endpoint) {
if (!text.empty()) {
++segment_index;
}
recognizer.Reset(s.get());
}