Davidliu 1 bulan lalu
induk
melakukan
a1d90e16eb
2 mengubah file dengan 16 tambahan dan 13 penghapusan
  1. 3 0
      src/core/voip/bot.py
  2. 13 13
      src/core/voip/constant.py

+ 3 - 0
src/core/voip/bot.py

@@ -412,6 +412,7 @@ class MyCall(pj.Call):
                 print("Success to stopTransmit:")
             except pj.Error as e:
                 print("Failed to stopTransmit:", e)
+            del self.audio_player
             self.audio_player = None  # 或调用播放器停止方法
         if self.audio_port:
             try:
@@ -419,9 +420,11 @@ class MyCall(pj.Call):
                 print("Success to stopTransmit:")
             except pj.Error as e:
                 print("Failed to stopTransmit:", e)
+            del self.audio_port
             self.audio_port = None  # 或调用相关销毁方法
         if self.audio_media:
             # self.audio_media.stopTransmit()
+            del self.audio_media
             self.audio_media = None
 
         self.asr.close()

+ 13 - 13
src/core/voip/constant.py

@@ -26,6 +26,19 @@ def build_media_config():
     media_cfg.audioFramePtime = 40
     return media_cfg
 
+def build_audio_format():
+    fmt = pj.MediaFormatAudio()
+    fmt.type = pj.PJMEDIA_TYPE_AUDIO
+    fmt.id = pj.PJMEDIA_FORMAT_PCM
+    fmt.channelCount = 1  # 通道数
+    fmt.bitsPerSample = 16  # 每个采样的位数
+    # fmt.clockRate = 8000  # 采样率
+    fmt.clockRate = 16000  # 采样率
+    fmt.frameTimeUsec = 40000  #微秒
+    # fmt.clockRate = 16000  # 采样率
+    # fmt.frameTimeUsec = 20000
+    return fmt
+
 def build_sip_transport_config():
     sip_transport_cfg = pj.TransportConfig()
     sip_transport_cfg.port = 30506
@@ -52,19 +65,6 @@ def build_account_config(host, port, user_part, password, timeout_sec):
     acfg.natConfig.sdpNatRewriteUse = 2
     return acfg
 
-def build_audio_format():
-    fmt = pj.MediaFormatAudio()
-    fmt.type = pj.PJMEDIA_TYPE_AUDIO
-    fmt.id = pj.PJMEDIA_FORMAT_PCM
-    fmt.channelCount = 1  # 通道数
-    fmt.bitsPerSample = 16  # 每个采样的位数
-    # fmt.clockRate = 8000  # 采样率
-    fmt.clockRate = 16000  # 采样率
-    fmt.frameTimeUsec = 40000  #微秒
-    # fmt.clockRate = 16000  # 采样率
-    # fmt.frameTimeUsec = 20000
-    return fmt
-
 def murmur3_32(player_file):
     if isinstance(player_file, list):
         player_file = ','.join(player_file)