freeswitch 播放远程文件的流程

freeswitch中既可以播放本地文件,也可以播放远程文件,如

loop_playback(+1 https://xxxxxx/filename.wav)

即文件名以https:// 或者 http://  开头。

流程图如下:

freeswitch 播放远程文件的流程_第1张图片

如何根据文件找对应的open回调函数呢:

用命令:show interfaces

file,wav,mod_sndfile   wav的接口在mod_sndfile中。

file,http,mod_httapi     http在mod_httapi 中
file,https,mod_httapi    https在mod_httapi 中

file,mp3,mod_shout     mp3在mod_shout中

总结:播放远程文件时,是先用curl下载到本地一个缓存文件中,再来播放。

          如果缓存文件已经存在,就不需要再次下载了。

容易出的问题:

        如果这个要下载的文件很大,或者网络不好,那么下载这个文件要很久,就会导致播放失败。

重要的日志:(出错的时候)

loop_playback(+2 https://file/xxxx.wav)
[WARNING] mod_sndfile.c:281 Error Opening File [xxx/storage/http_file_cache/fcache1.wav] [System error : No such file or directory.]
[ERR] mod_httapi.c:3022 Invalid cache file xxx/storage/http_file_cache/fcache1.wav opening url wav Discarding file.

隔了26秒后才打印这个:
[DEBUG] mod_httapi.c:2666 caching: url:https://file/xxxx.wav to xxx/storage/http_file_cache/fcache1.wav (xxx bytes)

你可能感兴趣的:(freeswitch,http,curl,playback)