Browse Source

讯飞实时听写接口,debug

Davidliu 1 month ago
parent
commit
16b2eeb381
1 changed files with 2 additions and 5 deletions
  1. 2 5
      src/core/voip/asr.py

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

@@ -379,7 +379,7 @@ class XunfeiAsr:
 
         count = 0
         # self.__event.clear()
-        websocket.enableTrace(True)
+        websocket.enableTrace(False)
         # while not self.__event.is_set():
         try:
             # 测试时候在此处正确填写相关信息即可运行
@@ -387,11 +387,8 @@ class XunfeiAsr:
             ws_url = self.create_url()
             self.logger.info("xunfei.Asr.call_id:%s, ws_url:%s", self.__id, ws_url)
             self.ws = websocket.WebSocketApp(ws_url, on_message=self.on_message, on_error=self.on_error, on_close=self.on_close)
-            self.logger.info("xunfei.Asr.call_id:%s, 111111111", self.__id)
             self.ws.on_open = self.on_open
-            self.logger.info("xunfei.Asr.call_id:%s, 2222222222", self.__id)
             self.ws.run_forever(sslopt={"cert_reqs": ssl.CERT_NONE})
-            self.logger.info("xunfei.Asr.call_id:%s, 3333333333", self.__id)
             time_cost = (datetime.now() - time1)
             self.logger.info(f"xunfei.Asr.started. call_id:{self.__id}, timeCost:{time_cost}, count:{count}")
             # self.__event.wait(timeout=1)
@@ -411,7 +408,7 @@ class XunfeiAsr:
         status = XunfeiAsr.STATUS_FIRST_FRAME if first else XunfeiAsr.STATUS_CONTINUE_FRAME # 音频的状态信息,标识音频是第一帧,还是中间帧、最后一帧
         if not audio_data:
             status = XunfeiAsr.STATUS_LAST_FRAME
-        buf = bytes(audio_data) if audio_data else None
+        buf = bytes(audio_data) if audio_data else []
         # 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)
 
         # 第一帧处理