|
@@ -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)
|