# mod_asr_proxy **Repository Path**: l3c2s1/mod_asr_proxy ## Basic Information - **Project Name**: mod_asr_proxy - **Description**: Freeswitch实时质检模块 - **Primary Language**: C - **License**: MPL-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 2 - **Created**: 2025-09-11 - **Last Updated**: 2025-09-11 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ### ASR Proxy - 将媒体流转发到websocket - 实现实时质检和坐席辅助 - 支持读写声道同时转发 ### Freeswitch Application 命令 - 开启 asr_proxy start - 关闭 asr_proxy start ### Websocket消息格式 { "channel": 0, // 0读 1写 "data": [] // 媒体流字节 } ### 编译教程 - 修改configure.ac 加入 ``` # AC_CONFIG_FILES= 中加入模块 src/mod/applications/mod_abstraction/Makefile src/mod/applications/mod_asr_proxy/Makefile ``` - 执行编译 ``` bootstrap -j # ./configure ```