mirror of
https://github.com/jambonz/freeswitch-modules.git
synced 2026-01-25 02:08:27 +00:00
b4f3a41913
* whisper tts stream module * add convert mp3 to linear * add lmpg123 link * wip * whisper cache * wip * wip * clean up * add free mem and openai metric * whisper: cache files as mp3 for simplicity --------- Co-authored-by: Dave Horton <daveh@beachdognet.com>
9 lines
399 B
Makefile
9 lines
399 B
Makefile
include $(top_srcdir)/build/modmake.rulesam
|
|
MODNAME=mod_whisper_tts
|
|
|
|
mod_LTLIBRARIES = mod_whisper_tts.la
|
|
mod_whisper_tts_la_SOURCES = mod_whisper_tts.c whisper_glue.cpp
|
|
mod_whisper_tts_la_CFLAGS = $(AM_CFLAGS)
|
|
mod_whisper_tts_la_LIBADD = $(switch_builddir)/libfreeswitch.la
|
|
mod_whisper_tts_la_LDFLAGS = -avoid-version -module -no-undefined -shared `pkg-config --libs boost` -lstdc++ -lmpg123
|