|
@@ -402,13 +402,13 @@ class XunfeiAsr:
|
|
self.__th.start()
|
|
self.__th.start()
|
|
|
|
|
|
def send_audio(self, audio_data=None, first=False):
|
|
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)
|
|
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
|
|
status = XunfeiAsr.STATUS_FIRST_FRAME if first else XunfeiAsr.STATUS_CONTINUE_FRAME # 音频的状态信息,标识音频是第一帧,还是中间帧、最后一帧
|
|
status = XunfeiAsr.STATUS_FIRST_FRAME if first else XunfeiAsr.STATUS_CONTINUE_FRAME # 音频的状态信息,标识音频是第一帧,还是中间帧、最后一帧
|
|
if not audio_data:
|
|
if not audio_data:
|
|
status = XunfeiAsr.STATUS_LAST_FRAME
|
|
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)
|
|
# 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)
|
|
|
|
|
|
# 第一帧处理
|
|
# 第一帧处理
|