A FreeSWITCH module to interface to your speech recognition & TTS server over websockets
-
Clone this repository in
${FREESWITCH_SOURCE_ROOT}/src/mod/asr_tts/
directory -
Add
src/mod/asr_tts/mod_whisper/Makefile
inconfigure.ac
underAC_CONFIG_FILES
section
2.1. Add following snippet in configure.ac
PKG_CHECK_MODULES([WEBSOCKETS], [libwebsockets >= 0.0.1],[
AM_CONDITIONAL([HAVE_WEBSOCKETS],[true])],[
AC_MSG_RESULT([no]); AM_CONDITIONAL([HAVE_WEBSOCKETS],[false])])
- Add the following two module in the ${FREESWITCH_SOURCE_ROOT}/modules.conf
asr_tts/mod_whisper
-
Run
autoreconf -f
before compiling freeswitch -
Re-compile and install the freeswitch to install mod_whisper module.
-
Active the
mod_whisper
by add the following to lines into the${FREESWITCH_INSTALLATION_ROOT}/conf/autoload_configs/modules.conf.xml
-
Copy the lua script under
{FREESWITCH_INSTALLATION_ROOT}/scripts/
-
Bind a number to build application by adding the following xml settings to the
${FREESWITCH_INSTALLATION_ROOT}/conf/dialplan/default.xml