https://github.com/akscf/mod_google_asr
Freeswitch ASR module
https://github.com/akscf/mod_google_asr
freeswitch speech-recognition speech-to-text
Last synced: 4 months ago
JSON representation
Freeswitch ASR module
- Host: GitHub
- URL: https://github.com/akscf/mod_google_asr
- Owner: akscf
- Created: 2023-08-16T19:59:46.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-07-13T07:04:27.000Z (7 months ago)
- Last Synced: 2025-07-13T09:10:37.435Z (7 months ago)
- Topics: freeswitch, speech-recognition, speech-to-text
- Language: C
- Homepage: https://akstel.org
- Size: 127 KB
- Stars: 3
- Watchers: 1
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Google Speech-To-Text service for the Freeswitch.
Features: vad, flexible adjustments.
Available through: asr_interface, commnad api.
A small installation guide can be found here: Fail to compile module
### Usage example
```
```
### mod_quickjs
```javascript
session.ttsEngine= 'google'; // requires: mod_google_tts
session.asrEngine= 'google';
var txt = session.sayAndDetectSpeech('Hello, how can I help you?', 10);
consoleLog('info', "TEXT: " + txt);
```
### Command line
```
freeswitch> google_asr_transcript /tmp/test.wav
+OK: How old is the Brooklyn Bridge
```