|
@@ -393,12 +393,12 @@ class XunfeiAsr:
|
|
|
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.debug(f"xunfei.Asr.started. call_id:{self.__id}, timeCost:{time_cost}, count:{count}")
|
|
|
+ self.logger.info(f"xunfei.Asr.started. call_id:{self.__id}, timeCost:{time_cost}, count:{count}")
|
|
|
self.__event.wait(timeout=.5)
|
|
|
- self.logger.debug(f"xunfei.Asr.started. call_id:{self.__id}, {count}")
|
|
|
+ self.logger.info(f"xunfei.Asr.started. call_id:{self.__id}, {count}")
|
|
|
except Exception as e:
|
|
|
traceback.print_exc()
|
|
|
- self.logger.debug(f"[{self.__id}]ASR session start exception. {e}")
|
|
|
+ self.logger.info(f"[{self.__id}]ASR session start exception. {e}")
|
|
|
count += 1
|
|
|
|
|
|
def start(self):
|
|
@@ -406,12 +406,12 @@ class XunfeiAsr:
|
|
|
|
|
|
def send_audio(self, audio_data=None, first=False):
|
|
|
if not self.ws:
|
|
|
- self.logger.debug('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
|
|
|
status = XunfeiAsr.STATUS_FIRST_FRAME if first else XunfeiAsr.STATUS_CONTINUE_FRAME # 音频的状态信息,标识音频是第一帧,还是中间帧、最后一帧
|
|
|
if not audio_data:
|
|
|
status = XunfeiAsr.STATUS_LAST_FRAME
|
|
|
- self.logger.debug('xunfei.Asr.send_audio: call_id: %s, status:%s, chunk:%s, %s', self.__id, status, len(audio_data), audio_data)
|
|
|
+ self.logger.info('xunfei.Asr.send_audio: call_id: %s, status:%s, chunk:%s, %s', self.__id, status, len(audio_data), audio_data)
|
|
|
|
|
|
# 第一帧处理
|
|
|
# 发送第一帧音频,带business 参数
|
|
@@ -443,7 +443,7 @@ class XunfeiAsr:
|
|
|
self.send_audio()
|
|
|
self.ws.close()
|
|
|
except Exception as e:
|
|
|
- self.logger.debug(f"[{self.__id}]Error stopping ASR: {e}")
|
|
|
+ self.logger.info(f"[{self.__id}]Error stopping ASR: {e}")
|
|
|
|
|
|
# 收到websocket连接建立的处理
|
|
|
def on_open(self, ws):
|