DavidLiu 3 달 전
부모
커밋
26b2725525
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      src/core/voip/bot.py

+ 2 - 1
src/core/voip/bot.py

@@ -118,7 +118,8 @@ class MyAudioMediaPort(pj.AudioMediaPort):
                 self.call.cur_player_file, self.call.wait_time, self.call.inputType,self.call.action, self.call.node_id = self.get_player_file()
                 # 重置播放完成标志和超时计时器,确保新的播放从头开始计时
                 self.call.reset_wait_time()
-                self.call.send_bot_speaker(self.call.cur_player_file)
+                threading.Thread(target=self.call.send_bot_speaker, args=(self.call.cur_player_file,)).start()
+                # self.call.send_bot_speaker(self.call.cur_player_file)
         except:
             pass