├── Makefile.am ├── README.md ├── conf └── whisper.conf.xml ├── mod_whisper.c ├── mod_whisper.h ├── scripts └── asr_demo.lua ├── websock_glue.c └── websock_glue.h /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrenity/mod_whisper/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrenity/mod_whisper/HEAD/README.md -------------------------------------------------------------------------------- /conf/whisper.conf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrenity/mod_whisper/HEAD/conf/whisper.conf.xml -------------------------------------------------------------------------------- /mod_whisper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrenity/mod_whisper/HEAD/mod_whisper.c -------------------------------------------------------------------------------- /mod_whisper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrenity/mod_whisper/HEAD/mod_whisper.h -------------------------------------------------------------------------------- /scripts/asr_demo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrenity/mod_whisper/HEAD/scripts/asr_demo.lua -------------------------------------------------------------------------------- /websock_glue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrenity/mod_whisper/HEAD/websock_glue.c -------------------------------------------------------------------------------- /websock_glue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrenity/mod_whisper/HEAD/websock_glue.h --------------------------------------------------------------------------------