freeswitch python 模块Demo
freeswitch python 模块Demo
说明:
- 首次发表日期:2024-08-26
- freeswitch相关文档: https://developer.signalwire.com/freeswitch/FreeSWITCH-Explained/Modules/mod_python_1048940/
注意:我将freeswitch安装在/opt/freeswitch
目录,文件或目录地址会因此受到影响。
需要安装mod_python3
模块,可以在安装freeswitch时,修改build/modules.conf.in
文件,取消对mod_python3注释:
#languages/mod_python
languages/mod_python3
#languages/mod_v8
进入/opt/freeswitch/share/freeswitch/scripts
文件夹创建mod_test.py
文件,内容如下:
import freeswitch
def handler(session, args):
session.answer()
freeswitch.console_log("info","Playing Music")
session.streamFile("/home/output.wav")
freeswitch.msleep(3000)
session.hangup()
其中output.wav为一个音频文件,参考 https://superuser.com/questions/675342/convert-mp3-to-wav-using-ffmpeg-for-vbr 使用ffmpeg将一个MP3文件转换为WAV文件:
ffmpeg -i song.mp3 -acodec pcm_u8 -ar 22050 output.wav
修改/opt/freeswitch/etc/freeswitch/dialplan/default.xml
文件,default context部分,添加一个extension,添加后:
<include>
<context name="default">
<extension name="mod_test">
<condition field="destination_number" expression="^\d+$">
<action application="python" data="mod_test"/>
</condition>
</extension>
其中^\d+$
为一个正则表达式,表示一个或者多个数字,前边的field为destination_number,那么condition标签意思是来电号码是数字的话,则满足条件。
执行reloadxml或者重启freeswitch使得修改生效。
修改/opt/freeswitch/etc/freeswitch/autoload_configs/modules.conf.xml
文件,取消对mod_python3
的注释:
<!-- Languages -->
<!-- <load module="mod_v8"/> -->
<!-- <load module="mod_perl"/> -->
<!-- <load module="mod_python"/> -->
<load module="mod_python3"/>
<!-- <load module="mod_java"/> -->
使用Linphone等软电话注册,然后拨打电话,可以听到音频文件在播放。