Browse Source

讯飞实时听写接口,debug

Davidliu 1 month ago
parent
commit
3eb25217c2
1 changed files with 5 additions and 4 deletions
  1. 5 4
      src/core/voip/asr.py

+ 5 - 4
src/core/voip/asr.py

@@ -400,15 +400,15 @@ class XunfeiAsr:
     def start(self):
     def start(self):
         self.__th.start()
         self.__th.start()
 
 
-    def send_audio(self, audio_data=None):
+    def send_audio(self, audio_data=None, latest=False):
         if not self.connected:
         if not self.connected:
             self.logger.info('xunfei.Asr.send_audio:ws_is_None: call_id: %s, chunk:%s, %s', self.__id, len(audio_data), audio_data)
             self.logger.info('xunfei.Asr.send_audio:ws_is_None: call_id: %s, chunk:%s, %s', self.__id, len(audio_data), audio_data)
             return
             return
 
 
-        if not audio_data:
+        if latest:
             self.status = XunfeiAsr.STATUS_LAST_FRAME
             self.status = XunfeiAsr.STATUS_LAST_FRAME
         buf = bytes(audio_data) if audio_data else bytes()
         buf = bytes(audio_data) if audio_data else bytes()
-        # self.logger.info('xunfei.Asr.send_audio: call_id: %s, status:%s, chunk:%s, %s', self.__id, status, (len(buf) if buf else 0) , buf)
+        self.logger.info('xunfei.Asr.send_audio: call_id: %s, status:%s, chunk:%s', self.__id, self.status, (len(buf) if buf else 0))
 
 
         # 第一帧处理
         # 第一帧处理
         # 发送第一帧音频,带business 参数
         # 发送第一帧音频,带business 参数
@@ -438,7 +438,7 @@ class XunfeiAsr:
 
 
     def close(self):
     def close(self):
         try:
         try:
-            self.send_audio()
+            self.send_audio(latest=True)
             self.ws.close()
             self.ws.close()
         except Exception as e:
         except Exception as e:
             self.logger.info(f"[{self.__id}]Error stopping ASR: {e}")
             self.logger.info(f"[{self.__id}]Error stopping ASR: {e}")
@@ -446,6 +446,7 @@ class XunfeiAsr:
     # 收到websocket连接建立的处理
     # 收到websocket连接建立的处理
     def on_open(self, ws):
     def on_open(self, ws):
         self.connected = True
         self.connected = True
+        self.status = XunfeiAsr.STATUS_FIRST_FRAME
         self.logger.info("xunfei.Asr.open: call_id: %s", self.__id)
         self.logger.info("xunfei.Asr.open: call_id: %s", self.__id)
         # self.__event.set()
         # self.__event.set()