Alex Young 2024-04-18
Add a debug log line when no text is detected
@88a7f3accd61efd803a8b9e56560750d2dd2b155
whisper_online_server.py
--- whisper_online_server.py
+++ whisper_online_server.py
@@ -130,7 +130,7 @@
             print("%1.0f %1.0f %s" % (beg,end,o[2]),flush=True,file=sys.stderr)
             return "%1.0f %1.0f %s" % (beg,end,o[2])
         else:
-            # No text, so no output
+            logger.debug("No text in this segment")
             return None
 
     def send_result(self, o):
Add a comment
List