Ver código fonte

讯飞实时听写接口,debug

Davidliu 1 mês atrás
pai
commit
884145d972
1 arquivos alterados com 2 adições e 2 exclusões
  1. 2 2
      src/core/voip/asr.py

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

@@ -402,13 +402,13 @@ class XunfeiAsr:
         self.__th.start()
 
     def send_audio(self, audio_data=None, first=False):
-        if not self.ws:
+        if not self.ws or not self.ws.sock or not self.ws.sock.connected:
             self.logger.info('xunfei.Asr.send_audio:ws_is_None: call_id: %s, chunk:%s, %s', self.__id, len(audio_data), audio_data)
             return
         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 []
+        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)
 
         # 第一帧处理