FreeSWITCH无法读取wav文件

时间:2021-04-15 15:27:04

错误日志如下:

  -- ::27.223464 [ERR] switch_core_file.c: Invalid file format [wav] for [/usr/local/freeswitch/sounds/music//suite-espanola-op--leyenda.wav]!
-- ::27.223464 [ERR] mod_local_stream.c: Can't open /usr/local/freeswitch/sounds/music/8000/suite-espanola-op-47-leyenda.wav

从日志上看,就是无法读取wav格式的文件。

可是哪个模块关联的wav文件格式的读取呢?

从头看启动日志:

  -- ::49.145175 [CRIT] switch_loadable_module.c: Error Loading module /usr/local/freeswitch/mod/mod_sndfile.so
**libgsm.so.: cannot open shared object file: No such file or directory**

原因找到了,mod_sndfile模块缺少关联库文件。

执行ldd mod_sndfile,结果如下:

     libfreebl3.so => /lib64/libfreebl3.so (0x00007f1af3a0e000)
libgsm.so. => not found
libFLAC.so. => not found
libvorbisenc.so. => not found
libvorbis.so. => not found
libogg.so. => not found
libltdl.so. => /lib64/libltdl.so. (0x00007f1af3802000)

一个一个补充吧。