mirror of
https://github.com/jambonz/freeswitch-modules.git
synced 2026-01-25 02:08:27 +00:00
* added module for using eleven labs tts * wip Signed-off-by: Dave Horton <daveh@beachdognet.com> * fixes for caching streaming file * elevenlabs: fix issue that caused issue after mod_reload * return final response code in playback stopped event * send error if tts fails --------- Signed-off-by: Dave Horton <daveh@beachdognet.com> Co-authored-by: Dave Horton <daveh@beachdognet.com>
9 lines
414 B
Makefile
9 lines
414 B
Makefile
include $(top_srcdir)/build/modmake.rulesam
|
|
MODNAME=mod_elevenlabs_tts
|
|
|
|
mod_LTLIBRARIES = mod_elevenlabs_tts.la
|
|
mod_elevenlabs_tts_la_SOURCES = mod_elevenlabs_tts.c elevenlabs_glue.cpp
|
|
mod_elevenlabs_tts_la_CFLAGS = $(AM_CFLAGS)
|
|
mod_elevenlabs_tts_la_LIBADD = $(switch_builddir)/libfreeswitch.la
|
|
mod_elevenlabs_tts_la_LDFLAGS = -avoid-version -module -no-undefined -shared `pkg-config --libs boost` -lstdc++
|